v2 / vlib / v / fmt / tests / multiline_comment_1_keep.vv
22 lines · 22 sloc · 310 bytes · 54c03080edfbf59e0a0eeaec38ef27501958d83b
Raw
1/*
2this is a very long comment
3that is on multiple lines
4 and has some formatting in it
5 that should be
6 preserved.
7*/
8fn main() {
9 println('hello')
10 /*
11 this comment also
12 has multiple lines
13 but it's difference
14 is that it is indented !
15 */
16 if true {
17 /*
18 this one is even more
19 indented !
20 */
21 }
22}
23