Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v4
/
vlib
/
v
/
checker
/
tests
/
assign_int_to_f32_err.out
6
lines
·
6
sloc
·
259 bytes
·
28fd783693feef22bb48cf5b04deaefdd3c1d863
Raw
1
vlib/v/checker/tests/assign_int_to_f32_err.vv:5:16: error: cannot assign to `my_float_32`: expected `f32`, not `int`
2
3 | _ = my_float_32
3
4 | my_int := int(2147483583)
4
5 | my_float_32 = my_int
5
| ~~~~~~
6
6 | }
7