v/vlib/v/checker/tests/assign_expr_type_err_g.vv

6 lines
54 B
V

fn main() {
mut foo := true
foo += false
_ = foo
}