fpc/tests/test/tinline10.pp
Jonas Maebe ed7511de58 * safeguard the nf_block_with_exit flag when simplifying blockn and
statementn + test

git-svn-id: trunk@9134 -
2007-11-04 18:33:07 +00:00

31 lines
287 B
ObjectPascal

{$inline on}
type
tr = record
l: longint;
end;
pr = ^tr;
procedure test(r: pr); inline;
begin
with r^ do
begin
l:=5;
exit;
end;
end;
function f: longint;
var
r: tr;
begin
f:=1;
test(@r);
f:=2;
end;
begin
if (f <> 2) then
halt(1);
end.