v/vlib/v/checker/tests/defer_optional.vv

8 lines
70 B
V

fn opt() ? {}
fn thing() ?string {
defer {
opt()
}
return 'ok'
}