Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
void_option_err.out
5
lines
·
5
sloc
·
181 bytes
·
90941b3b1f5513cef7f913bc54f1b5a2af0c8c7a
Raw
1
vlib/v/checker/tests/void_option_err.vv:1:16: error: use `?` instead of `?void`
2
1 | fn ret_void() ?void {
3
| ~~~~
4
2 | return error('error')
5
3 | }