v2 / vlib / v / checker / tests / propagate_result_with_option.vv
10 lines · 8 sloc · 87 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1fn foo() ?string {
2 return ''
3}
4
5fn bar() !string {
6 foo()!
7 return ''
8}
9
10fn main() {}
11