v/compiler/tests/match_test.v

12 lines
156 B
Go
Raw Normal View History

2019-07-17 02:44:41 +02:00
fn test_match() {
2019-07-17 01:43:59 +02:00
a := 3
mut b := 0
match a {
2 => println('two')
3 => println('three')
b = 3
2019-07-17 02:44:41 +02:00
4 => println('four')
2019-07-17 01:43:59 +02:00
}
assert b == 3
}