123456789101112131415161718 |
- { %fail }
- { Source provided for Free Pascal Bug Report 2362 }
- { Submitted by "Maarten Bekers" on 2003-02-07 }
- { e-mail: [email protected] }
- unit tw2362;
- interface
- type blah = function: integer;
- function iee: integer;
- var blah: blah;
- begin
- blah := iee;
- end.
|