v2 / vlib / v / fmt / tests / blocks_keep.vv
16 lines · 14 sloc · 208 bytes · 7a4b3abd07fcb20ee5845e79e2ea42bf2ce4ab7f
Raw
1fn main() {
2 {
3 println('(1/3) My first small scope')
4 //
5 }
6
7 {
8 println('(2/3) My second small scope')
9 //
10 }
11 // A line below prevents the line removal
12
13 {
14 println('(3/3) My Third small scope')
15 }
16}
17