v/vlib/v/checker/tests/return_missing_nested.vv

12 lines
135 B
V

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