fpc/tests/tbs/tb0404.pp
Jonas Maebe 303ad8de46 + added
2002-09-04 16:21:46 +00:00

18 lines
255 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.