mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-21 03:41:27 +02:00
15 lines
195 B
ObjectPascal
15 lines
195 B
ObjectPascal
program bug;
|
|
|
|
var
|
|
b : byte;
|
|
begin
|
|
b:=170;
|
|
if b<>Byte(#%10101010) then
|
|
halt(1);
|
|
if b<>Byte(%10101010) then
|
|
halt(1);
|
|
if b<>Byte(%10101010) then
|
|
halt(1);
|
|
WriteLn('Ok');
|
|
end.
|