15 lines
565 B
Plaintext
15 lines
565 B
Plaintext
vlib/v/checker/tests/overflow_int_err.vv:4:7: error: overflow in implicit type `int`, use explicit type casting instead
|
|
2 | a := -2147483648
|
|
3 | b := 2147483647
|
|
4 | c := -2147483649
|
|
| ~~~~~~~~~~~
|
|
5 | d := 2147483648
|
|
6 | println(a)
|
|
vlib/v/checker/tests/overflow_int_err.vv:5:7: error: overflow in implicit type `int`, use explicit type casting instead
|
|
3 | b := 2147483647
|
|
4 | c := -2147483649
|
|
5 | d := 2147483648
|
|
| ~~~~~~~~~~
|
|
6 | println(a)
|
|
7 | println(b)
|