v/vlib/v/checker/tests/shift_op_wrong_left_type_er...

6 lines
199 B
Plaintext

vlib/v/checker/tests/shift_op_wrong_left_type_err.vv:2:10: error: invalid operation: shift on type `float literal`
1 | fn main() {
2 | println(0.5 << 1)
| ~~~
3 | }