mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
8 lines
277 B
Plaintext
8 lines
277 B
Plaintext
vlib/v/parser/tests/select_else_2.vv:12:3: error: timeout `> t` and `else` are mutually exclusive `select` keys
|
|
10 | println('bad')
|
|
11 | }
|
|
12 | else {
|
|
| ~~~~
|
|
13 | println("shouldn't get here")
|
|
14 | }
|