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

17 lines
254 B
ObjectPascal

type
G = object
public
B:procedure;
{ the 1.1 compiler parses the next "public" as a procdirective of the preceding procedure }
public
constructor init;
end;
constructor G.init;
begin
B:=nil;
end;
begin
end.