mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-28 16:03:48 +02:00
18 lines
235 B
ObjectPascal
18 lines
235 B
ObjectPascal
{ Old file: tbs0133.pp }
|
|
{ object type declaration not 100% compatibile with TP7 }
|
|
|
|
type
|
|
t=object
|
|
f : longint;
|
|
procedure p;
|
|
g : longint; { Not allowed in BP7 }
|
|
end;
|
|
|
|
procedure t.p;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|