mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 02:28:14 +02:00
20 lines
195 B
ObjectPascal
20 lines
195 B
ObjectPascal
{ %OPT=-O3 -Oodeadstore }
|
|
var
|
|
p : plongint;
|
|
|
|
procedure p2;
|
|
var
|
|
i : longint;
|
|
begin
|
|
i:=1234;
|
|
p:=@i;
|
|
if p^<>1234 then
|
|
halt(1);
|
|
end;
|
|
|
|
|
|
begin
|
|
p2;
|
|
writeln('ok');
|
|
end.
|