v/vlib/v/tests/multiple_assign_test.v

7 lines
95 B
V
Raw Normal View History

2020-05-11 08:45:11 +02:00
fn test_multiple_assign() {
a, b, c := 1, 2, 3
assert a == 1
assert b == 2
assert c == 3
}