mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:28:12 +02:00
17 lines
207 B
ObjectPascal
17 lines
207 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
type
|
|
tc1 = class
|
|
fp : longint;
|
|
class procedure p;
|
|
property prop : longint read fp;
|
|
end;
|
|
|
|
class procedure tc1.p;
|
|
begin
|
|
writeln(prop);
|
|
end;
|
|
|
|
begin
|
|
end.
|