This commit is contained in:
Jonas Maebe 2005-03-03 19:59:11 +00:00
parent 7fb6b96aed
commit 08ce8f4a0e

21
tests/webtbf/tw3738.pp Normal file
View File

@ -0,0 +1,21 @@
{ %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.