vxx2 / vlib / v / checker / tests / fn_call_arg_mismatch_err_d.out
7 lines · 7 sloc · 313 bytes · e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1vlib/v/checker/tests/fn_call_arg_mismatch_err_d.vv:17:26: error: cannot use `fn (string) f64` as `fn (string) ?Flag` in argument 2 to `parse_option`
2 15 |
3 16 | fn main() {
4 17 | t := parse_option('45', parse_percent)?
5 | ~~~~~~~~~~~~~
6 18 | println(t)
7 19 | }
8