Add test for bug report 38973 (already fixed in trunk/main)

This commit is contained in:
Pierre Muller 2021-08-24 13:04:50 +00:00 committed by Michaël Van Canneyt
parent d354428f42
commit 23bf243acd

12
tests/webtbs/tw38973.pp Normal file
View File

@ -0,0 +1,12 @@
{%OPT=-O2}
{$mode objfpc}
var
b : LongBOOL;
pb : ^LongBOOL;
begin
b:=true;
pb:=nil;
if Assigned(pb) and pb^ then
Exit;
b:=false;
end.