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

+ 21 - 0
tests/webtbf/tw3738.pp

@@ -0,0 +1,21 @@
+{ %fail }
+
+program fjf775a;
+
+type
+  a = object
+    f: Integer
+  end;
+
+  b = object (a)
+    procedure p;
+  end;
+
+procedure b.p;
+begin
+  WriteLn (inherited f)  { WRONG }
+end;
+
+begin
+end.
+