소스 검색

+ test for getting the address of virtual methods of a class

Jonas Maebe 23 년 전
부모
커밋
07269c85d8
1개의 변경된 파일16개의 추가작업 그리고 0개의 파일을 삭제
  1. 16 0
      tests/tbs/tb0403.pp

+ 16 - 0
tests/tbs/tb0403.pp

@@ -0,0 +1,16 @@
+{$mode objfpc}
+
+type
+  tclass = class
+    procedure t; virtual;
+  end;
+
+procedure tclass.t;
+begin
+end;
+
+var
+  p: pointer;
+begin
+  p := @tclass.t;
+end.