v2 / vlib / v / tests / comptime / comptime_multiline_attr_test.v
11 lines · 9 sloc · 146 bytes · 94a91c263e37161f53b0860b1123e5dd64dbcb0c
Raw
1module main
2
3@[footer: 'Hello
4World']
5pub struct Config {}
6
7fn test_main() {
8 $for a in Config.attributes {
9 assert a.arg == 'Hello\nWorld'
10 }
11}
12