1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

test enum printing

This commit is contained in:
Alexander Medvednikov
2019-12-18 05:45:48 +03:00
parent 7456d556e1
commit 3d1db3519d
2 changed files with 14 additions and 8 deletions

View File

@ -24,15 +24,18 @@ fn test_in() {
num := 3 // used to be an expr bug before `in`
assert color in [.red, .green]
assert num == 3
}
println(color)
assert true
}
fn test_match() {
color := Color.red
color := Color.green
num := 3
match color {
.red { assert true }
.green { assert false }
.red { assert false }
.green { assert true }
else { assert false }
}
}
println(color)
assert num == 3
}
}