v/vlib/v/checker/tests/return_working_comp_if.vv

10 lines
108 B
V

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