aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/parser/tests/select_else_2.out
blob: f92703136089f258d1db5642a021c78546240ba2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
vlib/v/parser/tests/select_else_2.vv:9:3: notice: `>` is deprecated and will soon be forbidden - just state the timeout in nanoseconds
    7 |             println(b)
    8 |         }
    9 |         > 30 * time.millisecond {
      |         ^
   10 |             println('bad')
   11 |         }
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 |         }