v2 / vlib / v / gen / c / testdata / attr_string_quotes_escape.vv
11 lines · 9 sloc · 141 bytes · dec703006ba0acc2b9dfdb29a09f4b8c80744462
Raw
1struct Dummy {}
2
3@['option: "1"']
4fn (d Dummy) sample_method() {
5}
6
7fn main() {
8 $for method in Dummy.methods {
9 println(method.attrs)
10 }
11}
12