v4 / vlib / v / checker / tests / option_as_cast_err.out
5 lines · 5 sloc · 200 bytes · 0763ae70793d6dbf85af559a7b838d4916d6cf7d
Raw
1vlib/v/checker/tests/option_as_cast_err.vv:12:9: error: variable `b` is an Option, it must be unwrapped first
2 10 | println(b)
3 11 | println(b? as int)
4 12 | println(b as int)
5 | ^
6