v/vlib/v/checker/tests/arrow_op_wrong_right_type_e...

6 lines
55 B
V

fn main() {
ch := i64(3)
obj := <-ch
println(obj)
}