fpc/tests/webtbs/tw38249.pp

10 lines
111 B
ObjectPascal

var
A: Double = 0.0001;
B: Double = 0;
begin
if B >= 0 then
A := B;
if A<>0 then
halt(1);
end.