fpc/tests/tbs/tb0004.pp
2000-11-30 22:38:14 +00:00

17 lines
221 B
ObjectPascal

{ Old file: tbs0005.pp }
{ tests the if 1=1 then ... bugs OK 0.9.2 }
uses
erroru;
begin
if 1=1 then
begin
Writeln('OK');
end;
if 1<>1 then
begin
Error;
end;
end.