mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 08:13:42 +02:00
14 lines
192 B
ObjectPascal
14 lines
192 B
ObjectPascal
{ %FAIL }
|
|
|
|
{ an anonymous function by itself isn't a valid expression or statement }
|
|
|
|
program tanonfunc54;
|
|
|
|
{$mode objfpc}
|
|
{$modeswitch anonymousfunctions}
|
|
|
|
begin
|
|
procedure begin end;
|
|
end.
|
|
|