Browse Source

no message

florian 21 years ago
parent
commit
cd8d64e511
1 changed files with 15 additions and 0 deletions
  1. 15 0
      tests/webtbs/tw3168.pp

+ 15 - 0
tests/webtbs/tw3168.pp

@@ -0,0 +1,15 @@
+{ Source provided for Free Pascal Bug Report 3168 }
+{ Submitted by "Henri Gourvest" on  2004-06-15 }
+{ e-mail: [email protected] }
+program Untitled1;
+{ $MODE objfpc}
+type
+  TClazz = class
+  private
+    f: procedure(x: Integer); cdecl;
+  public
+    x: integer;
+  end;
+
+begin
+end.