mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:07:58 +02:00
13 lines
164 B
ObjectPascal
13 lines
164 B
ObjectPascal
{%OPT=-O2}
|
|
{$mode objfpc}
|
|
var
|
|
b : LongBOOL;
|
|
pb : ^LongBOOL;
|
|
begin
|
|
b:=true;
|
|
pb:=nil;
|
|
if Assigned(pb) and pb^ then
|
|
Exit;
|
|
b:=false;
|
|
end.
|