v2 / vlib / v / fmt / tests / stmt_keep.vv
8 lines · 8 sloc · 199 bytes · 2c609411ddbbf3fb756c4835cb0e0296d488913d
Raw
1fn single_line_stmts() {
2 // Wouldn't be the or-block's stmt be single line, the block would be written as multi line
3 foo() or { assert false }
4 for {
5 foo() or { break }
6 }
7 foo() or { return }
8}
9