mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 08:59:27 +02:00
16 lines
177 B
ObjectPascal
16 lines
177 B
ObjectPascal
{ %FAIL }
|
|
|
|
{$mode objfpc} {$modeswitch anonymousfunctions}
|
|
procedure Main;
|
|
var
|
|
c: int32;
|
|
begin
|
|
c := 12;
|
|
TProcedure(procedure begin writeln(c); end);
|
|
end;
|
|
|
|
begin
|
|
Main;
|
|
end.
|
|
|