| 1 | vlib/v/parser/tests/select_else_2.vv:9:3: notice: `>` is deprecated and will soon be forbidden - just state the timeout in nanoseconds |
| 2 | 7 | println(b) |
| 3 | 8 | } |
| 4 | 9 | > 30 * time.millisecond { |
| 5 | | ^ |
| 6 | 10 | println('bad') |
| 7 | 11 | } |
| 8 | vlib/v/parser/tests/select_else_2.vv:12:3: error: timeout `> t` and `else` are mutually exclusive `select` keys |
| 9 | 10 | println('bad') |
| 10 | 11 | } |
| 11 | 12 | else { |
| 12 | | ~~~~ |
| 13 | 13 | println("shouldn't get here") |
| 14 | 14 | } |
| 15 |