v/vlib/v/checker/tests/optional_in_println_mismatc...

8 lines
76 B
V

fn funcy() ?int {
return none
}
fn main() {
println(funcy() or { '' })
}