v2 / vlib / v / checker / tests / error_fn_with_0_args.out
7 lines · 7 sloc · 213 bytes · fc72044b42db341e64f1f43dc4c06e7c7ce31c44
Raw
1vlib/v/checker/tests/error_fn_with_0_args.vv:2:9: error: expected 1 argument, but got 0
2 1 | fn abc() ! {
3 2 | return error()
4 | ~~~~~~~
5 3 | }
6Details: have ()
7 want (string)
8