mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 02:08:09 +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.
|
|
|