fpc/bugs/bug0105.pp
1998-03-25 11:26:49 +00:00

16 lines
312 B
ObjectPascal

{$R+}
{ BOUND check error... I don't think this is a code generator error }
{ but an error because the type casting is not considered at all! }
{ Must be compiled with -Cr }
Var
Sel: Word;
v: longint;
Begin
v:=$00ffffff;
Sel:=word(v);
writeln(sel);
sel:=v;
end.