v/vlib/v/checker/tests/assign_expr_type_err_h.vv

6 lines
57 B
V

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