mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
15 lines
157 B
ObjectPascal
15 lines
157 B
ObjectPascal
{ %fail }
|
|
|
|
program project1;
|
|
|
|
{$mode objfpc}
|
|
type
|
|
TestObject = object
|
|
var
|
|
TestNested: Integer;
|
|
end;
|
|
|
|
begin
|
|
writeln(TestObject.TestNested);
|
|
end.
|