vxx2 / vlib / v / checker / tests / none_match_cond_err.out
11 lines · 11 sloc · 339 bytes · 9760a9c6b258017ed728d323cbcd3f7016c40c3b
Raw
1vlib/v/checker/tests/none_match_cond_err.vv:2:2: notice: match is always true
2 1 | match none {
3 2 | none {}
4 | ~~~~
5 3 | else {}
6 4 | }
7vlib/v/checker/tests/none_match_cond_err.vv:1:1: error: `none` cannot be a match condition
8 1 | match none {
9 | ~~~~~~~~~~~~
10 2 | none {}
11 3 | else {}
12