peter 21 years ago
parent
commit
4a32885427
1 changed files with 25 additions and 0 deletions
  1. 25 0
      tests/webtbs/tw2363.pp

+ 25 - 0
tests/webtbs/tw2363.pp

@@ -0,0 +1,25 @@
+{ Source provided for Free Pascal Bug Report 2363 }
+{ Submitted by "Maarten Bekers" on  2003-02-07 }
+{ e-mail: [email protected] }
+unit tw2363;
+
+{$mode delphi}
+
+interface
+
+type blah = function: integer;
+function iee: integer; export;
+
+
+var blah2: blah;
+
+implementation
+
+function iee: integer; export;
+begin
+end;
+
+begin
+  blah2 := iee;
+end.
+