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

6 lines
65 B
V

fn main() {
ch := chan u64{cap: 10}
obj := 'test'
ch <- obj
}