mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:47:59 +02:00
17 lines
161 B
ObjectPascal
17 lines
161 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
tc = class
|
|
strict private
|
|
fa: longint;
|
|
end;
|
|
|
|
tcc = class(tc)
|
|
property a: longint read fa;
|
|
end;
|
|
|
|
begin
|
|
end.
|