v/vlib/v/checker/tests/arrow_op_wrong_left_type_er...

7 lines
70 B
V

fn main() {
ch := chan string{}
mut obj := 9
obj = <-ch
_ = obj
}