mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
25 lines
221 B
ObjectPascal
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.
|