mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 17:59:26 +02:00

Fixed by in fixes_3_2 branch by cherry-pick commit g4e5fb2c
(cherry picked from commit 0bc827e9e2
)
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.
|