Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
comptime
/
comptime_multiline_attr_test.v
11
lines
·
9
sloc
·
146 bytes
·
94a91c263e37161f53b0860b1123e5dd64dbcb0c
Raw
1
module
main
2
3
@[footer:
'Hello
4
World']
5
pub
struct
Config {}
6
7
fn
test_main() {
8
$
for
a
in
Config.attributes {
9
assert a.arg ==
'Hello\nWorld'
10
}
11
}
12