fpc/tests/webtbs/tw41093.pp

25 lines
221 B
ObjectPascal

{ %OPT=-Sg }
{$mode objfpc}
{$H+}
procedure Test;
var
A: String;
function TestInline: Char; inline;
begin
end;
label
TestLabel;
begin
A := TestInline;
goto TestLabel;
TestLabel:
end;
begin
Test;
end.