v/vlib/v/checker/tests/return_missing_simple.vv

8 lines
80 B
V

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