@@ -0,0 +1,16 @@
+{$X-}
+
+type
+ o=object
+ constructor init(s:string);
+ end;
+constructor o.init(s:string);
+begin
+end;
+var
+ s:o;
+ s.init('test');
+end.
@@ -0,0 +1,13 @@
+unit tw1376;
+interface
+procedure mumble (x:integer); pascal;
+implementation