blob: dd4e101c455f0e9249cb65235e1bf04bd33506a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{ %TARGET=win64,wince,win32,linux }
{ Source provided for Free Pascal Bug Report 2364 }
{ Submitted by "Maarten Bekers" on 2003-02-08 }
{ e-mail: fpc-bugs@elebbs.com }
unit tw2364;
interface
type blah = function: integer;
function iee: integer;
var blah2: blah;
implementation
function iee: integer;
begin
end;
exports
iee;
end.
|