peter 21 năm trước cách đây
mục cha
commit
4a32885427
1 tập tin đã thay đổi với 25 bổ sung0 xóa
  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.
+