summaryrefslogtreecommitdiff
path: root/tests/webtbf/tw2362.pp
blob: 45b2b67554a5a557d77213631659e46d1d00b189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ %fail }

{ Source provided for Free Pascal Bug Report 2362 }
{ Submitted by "Maarten Bekers" on  2003-02-07 }
{ e-mail: fpc-bugs@elebbs.com }
unit tw2362;

interface

type blah = function: integer;
function iee: integer;


var blah: blah;

begin
  blah := iee;
end.