1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/tests/match_test.v
Alexander Medvednikov 14ad70d3a0 match: else
2019-07-17 02:47:45 +02:00

13 lines
193 B
Go

fn test_match() {
a := 3
mut b := 0
match a {
2 => println('two')
3 => println('three')
b = 3
4 => println('four')
else => println('???')
}
assert b == 3
}