mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 06:59:54 +02:00
17 lines
221 B
ObjectPascal
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.
|