mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
21 lines
187 B
ObjectPascal
21 lines
187 B
ObjectPascal
{$inline on}
|
|
|
|
unit uw17493;
|
|
|
|
interface
|
|
|
|
procedure test; inline;
|
|
|
|
implementation
|
|
|
|
procedure test; inline;
|
|
var
|
|
a: boolean;
|
|
begin
|
|
a:=paramcount>100;
|
|
while a do
|
|
halt(1);
|
|
end;
|
|
|
|
end.
|