v/vlib/v/checker/tests/return_type.out

7 lines
196 B
Plaintext

vlib/v/checker/tests/return_type.vv:2:9: error: cannot use `int literal` as type `bool` in return argument
1 | fn test() bool {
2 | return 100
| ~~~
3 | }
4 |