v/vlib/v/checker/tests/optional_variable_err.out

6 lines
186 B
Plaintext

vlib/v/checker/tests/optional_variable_err.vv:2:7: error: casting to optional type is forbidden
1 | fn main() {
2 | _ := ?bool(false)
| ~~~~~~~~~~~~
3 | }