mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-08 02:20:36 +01: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.
|