v2 / vlib / v / checker / tests / const_int_overflow_err.out
5 lines · 5 sloc · 214 bytes · ca484430e0380a3fc591b842aadda4fe18deaae5
Raw
1vlib/v/checker/tests/const_int_overflow_err.vv:1:11: error: overflow in implicit type `int`, use explicit type casting instead
2 1 | const c = 2847238432
3 | ~~~~~~~~~~
4 2 |
5 3 | fn main() {
6