| 1 | fn callexpr_with_or_block_call() !string { |
| 2 | return error('') |
| 3 | } |
| 4 | |
| 5 | fn main() { |
| 6 | _ = callexpr_with_or_block_call() or {}.replace('a', 'b') |
| 7 | _ = (callexpr_with_or_block_call() or {}).replace('a', 'b') |
| 8 | |
| 9 | _ = callexpr_with_or_block_call() or { eprintln('error') }.replace('a', 'b') |
| 10 | _ = (callexpr_with_or_block_call() or { eprintln('error') }).replace('a', 'b') |
| 11 | } |
| 12 |