Browse Source

no message

florian 25 years ago
parent
commit
4e574233e4
1 changed files with 22 additions and 0 deletions
  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.
+
+