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

8 lines
311 B
Plaintext

vlib/v/parser/tests/select_else_1.vv:12:3: error: `else` and timeout value are mutually exclusive `select` keys
10 | println("shouldn't get here")
11 | }
12 | 30 * time.millisecond {
| ~~~~~~~~~~~~~~~~~~~~~
13 | println('bad')
14 | }