mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 19:49:31 +02:00
19 lines
268 B
ObjectPascal
19 lines
268 B
ObjectPascal
{ %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.
|