vxx2 / vlib / v / checker / tests / option_in_println_mismatch.out
6 lines · 6 sloc · 242 bytes · e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1vlib/v/checker/tests/option_in_println_mismatch.vv:6:23: error: wrong return type `string` in the `or {}` block, expected `int`
2 4 |
3 5 | fn main() {
4 6 | println(funcy() or { '' })
5 | ~~
6 7 | }
7