tw2362.pp 268 B

123456789101112131415161718
  1. { %fail }
  2. { Source provided for Free Pascal Bug Report 2362 }
  3. { Submitted by "Maarten Bekers" on 2003-02-07 }
  4. { e-mail: [email protected] }
  5. unit tw2362;
  6. interface
  7. type blah = function: integer;
  8. function iee: integer;
  9. var blah: blah;
  10. begin
  11. blah := iee;
  12. end.