fpc/tests/test/trox5.pp
florian 01f07ae466 + forgotten test for r17808
git-svn-id: trunk@17811 -
2011-06-23 21:03:17 +00:00

14 lines
157 B
ObjectPascal

{$r-}
var
l : longint;
begin
l:=$ff;
l:=RorByte(l);
if l<>$ff then
halt(1);
l:=RolByte(l);
if l<>$ff then
halt(1);
writeln('ok');
end.