v4 / vlib / v / checker / tests / option_fn_var_err.out
7 lines · 7 sloc · 272 bytes · 4f39bac1fd4afeb3df84ecaee0f2acb10858d224
Raw
1vlib/v/checker/tests/option_fn_var_err.vv:18:9: error: type `?DataFn` is an Option, it must be unwrapped first
2 16 | fn main() {
3 17 | req := find_func('vlang')
4 18 | fun := req('options')
5 | ~~~~~~~~~~~~~~
6 19 | println(fun)
7 20 | }
8