v/vlib/v/checker/tests/wrong_propagate_ret_type.vv

9 lines
87 B
V
Raw Normal View History

2020-05-23 08:51:15 +02:00
fn ret_none() ?int {
return none
}
fn opt_call() int {
a := ret_none()?
return a
}