Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
gen
/
c
/
testdata
/
attr_string_quotes_escape.vv
11
lines
·
9
sloc
·
141 bytes
·
dec703006ba0acc2b9dfdb29a09f4b8c80744462
Raw
1
struct Dummy {}
2
3
@['option: "1"']
4
fn (d Dummy) sample_method() {
5
}
6
7
fn main() {
8
$for method in Dummy.methods {
9
println(method.attrs)
10
}
11
}
12