mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
15 lines
193 B
ObjectPascal
15 lines
193 B
ObjectPascal
{$goto on}
|
|
program ie200211262;
|
|
|
|
function func(v: pointer): string; inline;
|
|
begin
|
|
func:='';
|
|
end;
|
|
|
|
label lab;
|
|
|
|
begin
|
|
lab:
|
|
func(@lab); // app.lpr(11,3) Error: Internal error 200211262
|
|
end.
|