v/vlib/v/checker/tests/return_working_simple.vv

10 lines
103 B
V

fn main() {}
fn foo() string {
if true {
return ''
} else {
return ''
}
}