Browse Source

* new bugs

peter 24 years ago
parent
commit
b5644bee5c
2 changed files with 29 additions and 0 deletions
  1. 16 0
      tests/webtbs/tw1364.pp
  2. 13 0
      tests/webtbs/tw1376.pp

+ 16 - 0
tests/webtbs/tw1364.pp

@@ -0,0 +1,16 @@
+{$X-}
+
+type
+  o=object
+    constructor init(s:string);
+  end;
+
+constructor o.init(s:string);
+begin
+end;
+
+var
+  s:o;
+begin
+  s.init('test');
+end.

+ 13 - 0
tests/webtbs/tw1376.pp

@@ -0,0 +1,13 @@
+unit tw1376;
+
+interface
+
+procedure mumble (x:integer); pascal;
+
+implementation
+
+procedure mumble (x:integer); pascal;
+begin
+end;
+
+end.