Browse Source

* new bug

peter 20 years ago
parent
commit
310bd76f34
1 changed files with 16 additions and 0 deletions
  1. 16 0
      tests/webtbs/tw3173.pp

+ 16 - 0
tests/webtbs/tw3173.pp

@@ -0,0 +1,16 @@
+{ Source provided for Free Pascal Bug Report 3173 }
+{ Submitted by "Dominik Zablotny" on  2004-06-18 }
+{ e-mail: [email protected] }
+program test;
+{$ifdef fpc}{$mode delphi}{$endif}
+var
+  p: procedure of object;
+
+  function f:pointer;
+  begin
+  end;
+
+begin
+  @p := f;
+end.
+