v/vlib/v/checker/tests/return_working_comp_if_nest...

18 lines
250 B
V

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