fpc/tests/webtbs/uw17493.pp
Jonas Maebe 92997a0249 * store/load tloopnode.loopflags to/from ppu files so that for/repeat/while
loops are correctly inlined (mantis #17493)

git-svn-id: trunk@16106 -
2010-10-08 13:01:25 +00:00

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.