tb0090.pp 294 B

123456789101112131415
  1. { Old file: tbs0106.pp }
  2. { typecasts are now ignored problem (NOT A bugs) OK 0.99.1 }
  3. {$R-}
  4. { I think this now occurs with most type casting... }
  5. { I think type casting is no longer considered?? }
  6. Var
  7. Sel: Word;
  8. Sel2: byte;
  9. Begin
  10. Sel:=word($7fffffff);
  11. Sel2:=byte($7fff);
  12. end.