mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
12 lines
207 B
ObjectPascal
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.
|