vxx2 / vlib / v / checker / tests / generic_interface_callback_arg_err.out
7 lines · 7 sloc · 302 bytes · 593fdc5a9f00b13b76cc81a0f2d8fc71c13abf96
Raw
1vlib/v/checker/tests/generic_interface_callback_arg_err.vv:14:6: error: cannot use `BaseInterface` as `CustomStruct` in argument 1 to `cb`
2 12 | fn callback[T](ctx BaseInterface, cb fn (T)) {
3 13 | $if T is BaseInterface {
4 14 | cb(ctx)
5 | ~~~
6 15 | }
7 16 | }
8