fpc/tests/tbs/tb0009.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

16 lines
241 B
ObjectPascal

{ Old file: tbs0012.pp }
{ tests type conversation byte(a>b) OK 0.9.9 (FK) }
var
a,b : longint;
begin
a:=1;
b:=2;
if byte(a>b)=byte(a<b) then
begin
writeln('Ohhhh');
Halt(1);
end;
end.