mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-06 17:10:50 +01: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.
|