mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
18 lines
220 B
ObjectPascal
18 lines
220 B
ObjectPascal
{ %FAIL }
|
|
|
|
{$mode objfpc} {$modeswitch anonymousfunctions}
|
|
procedure Main;
|
|
type
|
|
TProcMethod = procedure of object;
|
|
var
|
|
c: int32;
|
|
begin
|
|
c := 12;
|
|
TProcMethod(procedure begin writeln(c); end);
|
|
end;
|
|
|
|
begin
|
|
Main;
|
|
end.
|
|
|