Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
if_match_expr_err.out
7
lines
·
7
sloc
·
240 bytes
·
e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1
vlib/v/checker/tests/if_match_expr_err.vv:3:8: error: cannot use `match` with `if` statements
2
1 | fn main() {
3
2 | a := 0
4
3 | if match a {
5
| ~~~~~
6
4 | 0 {
7
5 | println('a is zero')
8