fpc/tests/tbs/tb0087.pp
2000-11-30 22:38:14 +00:00

12 lines
207 B
ObjectPascal

{ Old file: tbs0103.pp }
{ problems with boolean typecasts (other type) OK 0.99.6 (PFV) }
Var
out: boolean;
int: byte;
Begin
{ savesize is different! }
out:=boolean((int AND $20) SHL 4);
end.