v/vlib/v/checker/tests/assign_expr_type_err_i.vv

6 lines
55 B
V

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