소스 검색

no message

florian 25 년 전
부모
커밋
4e574233e4
1개의 변경된 파일22개의 추가작업 그리고 0개의 파일을 삭제
  1. 22 0
      tests/webtbs/tbug1203.pp

+ 22 - 0
tests/webtbs/tbug1203.pp

@@ -0,0 +1,22 @@
+{ Source provided for Free Pascal Bug Report 1203 }
+{ Submitted by "Marco van de Voort" on  2000-10-29 }
+{ e-mail: [email protected] }
+{$mode Delphi}
+type
+     someprocedureofobjectype=procedure (sender:tobject) OF 
+OBJECT;
+
+     a=class
+		  protected
+		    fondisplay : someprocedureofobjectype;
+		  end;
+
+       b=class(A)
+		  protected
+		    fondisplay : someprocedureofobjectype;
+		  end;
+
+begin
+end.
+
+