v2 / vlib / v / tests / nested_multiline_comments_test.v
19 lines · 16 sloc · 202 bytes · 33ba24e9334d5dac423947de62baef5d94213542
Raw
1fn test_nested_multiline_comments_1() {
2 /*//println(os.args)
3 */
4 assert true
5}
6
7fn test_nested_multiline_comments_2() {
8 tt()
9 assert true
10}
11
12/*
13fn tt() {
14}
15//*/
16
17fn tt() {
18 println('hello, world')
19}
20