mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 11:08:02 +02:00
10 lines
115 B
ObjectPascal
10 lines
115 B
ObjectPascal
{$mode objfpc}
|
|
uses uw18909a, uw18909b;
|
|
var
|
|
a: TA = (x: 1);
|
|
b: TB = (x: 1);
|
|
begin
|
|
b := a;
|
|
Write(b.x);
|
|
end.
|