Guest User

Untitled

a guest
Jan 17th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. var
  2. TruncTmp: Extended;
  3. begin
  4. TruncTmp := 9223372036854775296;
  5. TruncTmp := Trunc(TruncTmp); // this fails on 64-bit
  6. Assert(TruncTmp = 9223372036854775296);
  7. end;
Add Comment
Please, Sign In to add comment