Jonas Maebe 20 년 전
부모
커밋
e1205ad4e4
1개의 변경된 파일20개의 추가작업 그리고 0개의 파일을 삭제
  1. 20 0
      tests/webtbf/tw3740.pp

+ 20 - 0
tests/webtbf/tw3740.pp

@@ -0,0 +1,20 @@
+{ %fail }
+
+program fjf915a;
+
+type
+  t = object
+    constructor Init (a: Boolean);
+  end;
+
+constructor t.Init (a: Boolean);
+begin
+end;
+
+var
+  p: ^t;
+
+begin
+  New (p, Init (Init (False)))  { WRONG }
+end.
+