mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 22:29:24 +02:00
20 lines
205 B
ObjectPascal
20 lines
205 B
ObjectPascal
{ %OPT=-O3 -Oodeadstore }
|
|
procedure p;
|
|
var
|
|
i : longint;
|
|
procedure n;
|
|
begin
|
|
if i<>1234 then
|
|
halt(1);
|
|
end;
|
|
|
|
begin
|
|
i:=1234;
|
|
n;
|
|
end;
|
|
|
|
begin
|
|
p;
|
|
writeln('ok');
|
|
end.
|