v/vlib/v/tests/multiple_assign_test.v

7 lines
95 B
V

fn test_multiple_assign() {
a, b, c := 1, 2, 3
assert a == 1
assert b == 2
assert c == 3
}