Jonas Maebe %!s(int64=23) %!d(string=hai) anos
pai
achega
303ad8de46
Modificáronse 1 ficheiros con 17 adicións e 0 borrados
  1. 17 0
      tests/tbs/tb0404.pp

+ 17 - 0
tests/tbs/tb0404.pp

@@ -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.
+