Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
nested_multiline_comments_test.v
19
lines
·
16
sloc
·
202 bytes
·
33ba24e9334d5dac423947de62baef5d94213542
Raw
1
fn
test_nested_multiline_comments_1() {
2
/*/
/println(os.args)
3
*/
4
assert
true
5
}
6
7
fn
test_nested_multiline_comments_2() {
8
tt()
9
assert
true
10
}
11
12
/*
13
fn tt() {
14
}
15
//*/
16
17
fn
tt() {
18
println(
'hello, world'
)
19
}
20