@@ -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 }
+ constructor init;
+ end;
+
+ constructor G.init;
+ begin
+ B:=nil;
+begin
+end.