v/vlib/v/checker/tests/assign_expr_undefined_err_c.vv

5 lines
55 B
V
Raw Normal View History

fn main() {
a, b := a + 1, b * 3
println('$a, $b')
2020-05-25 11:31:04 +02:00
}