v/vlib/v/checker/tests/assign_expr_type_err_f.vv

6 lines
52 B
V

fn main() {
mut foo := 10
foo -= false
_ = foo
}