소스 검색

* cdecl methods are required for CLX compatibilit

peter 22 년 전
부모
커밋
86c4522697
1개의 변경된 파일0개의 추가작업 그리고 17개의 파일을 삭제
  1. 0 17
      tests/tbf/tb0130.pp

+ 0 - 17
tests/tbf/tb0130.pp

@@ -1,17 +0,0 @@
-{ %FAIL }
-
-{$mode objfpc}
-type
- tmyclass = class
-  { you should not be able to have virtual methods which 
-    are noted as cdecl.
-  }
-  procedure myroutine;virtual;cdecl;
- end;
-
-procedure tmyclass.myroutine;cdecl;
-begin
-end;
-
-Begin
-end.