fpc/tests/tbs/tb0172a.pp
Jonas Maebe 53be0147d4 * fixed assignments to integer regvars typecasted to a type
of equal size but with different signdness + test

git-svn-id: trunk@9871 -
2008-01-22 21:27:34 +00:00

37 lines
621 B
ObjectPascal

{ Old file: tbs0204.pp }
{ can typecast the result var in an assignment OK 0.99.11 (PM) }
{ boolean(byte) byte(boolean)
word(wordbool) wordbool(word)
longint(longbool) and longbool(longint)
must be accepted as var parameters
or a left of an assignment }
procedure error;
begin
Writeln('Error in tb0172a');
Halt(1);
end;
procedure test;
var
b : shortint;
wb : smallint;
lb : longint;
begin
b:=0;
wb:=0;
lb:=0;
byte(b):=128;
word(wb):=32768;
cardinal(lb):=$80000000;
if (b<>low(shortint)) or (wb<>low(smallint)) or (lb<>low(longint)) then
error;
end;
begin
test;
end.