This commit is contained in:
Jonas Maebe 2002-09-04 16:21:46 +00:00
parent 650eb87f8c
commit 303ad8de46

17
tests/tbs/tb0404.pp Normal file
View File

@ -0,0 +1,17 @@
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.