fpc/tests/webtbf/tw41075c.pp
Sven/Sarah Barth 310afcd783 * fix #41075: don't allow @<anonfunc>
+ added tests
2024-12-26 12:48:44 +01:00

22 lines
403 B
ObjectPascal

{ %FAIL }
program tw41075c;
{$modeswitch ANONYMOUSFUNCTIONS}
//{$modeswitch CLASSICPROCVARS} // with this its a regular error: expected procedure, got pointer
{$modeswitch POINTERTOPROCVAR} // with this (and CLASSICPROCVARS) the code works fine
procedure test(p: TProcedure);
begin
p;
end;
begin
test(@(procedure // Error: Internal error 2021052602
begin
writeln('Hello');
end));
end.