mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:28:55 +02:00

* test program attached to the bug report was incorrectly transformed to a test for the test suite git-svn-id: trunk@32962 -
15 lines
189 B
ObjectPascal
15 lines
189 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<>%10101010 then
|
|
halt(1);
|
|
WriteLn('Ok');
|
|
end.
|