mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 21:39:31 +02:00
21 lines
185 B
ObjectPascal
21 lines
185 B
ObjectPascal
{ %fail }
|
|
|
|
program fjf775a;
|
|
|
|
type
|
|
a = object
|
|
f: Integer
|
|
end;
|
|
|
|
b = object (a)
|
|
procedure p;
|
|
end;
|
|
|
|
procedure b.p;
|
|
begin
|
|
WriteLn (inherited f) { WRONG }
|
|
end;
|
|
|
|
begin
|
|
end.
|