fpc/tests/tbf/tb0096.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

24 lines
435 B
ObjectPascal

{ %FAIL }
{ derived from source for Bug Report 1203 }
{ in FPC mode this shouldn't compile }
{$mode objfpc}
type
someprocedureofobjectype=procedure (sender:tobject) OF OBJECT;
a=class
protected
fondisplay : someprocedureofobjectype;
public
a:longint;
end;
b=class(A)
protected
fondisplay : someprocedureofobjectype;
public
a:longint;
end;
begin
end.