aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/eval-fail-overflowing-div.nix
blob: 44fbe9d7e31d91b0198201f529f268e264803bb4 (plain)
1
2
3
4
5
6
7
let
  # lol, this has to be written as an expression like this because negative
  # numbers use unary negation rather than parsing directly, and 2**63 is out
  # of range
  intMin = -9223372036854775807 - 1;
  b = -1;
in builtins.seq intMin (builtins.seq b (intMin / b))