Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
skip_unused
/
comptime_for_fields.vv
11
lines
·
9
sloc
·
122 bytes
·
61097a0c4dbf38a41577696c14b986046c3d0cb7
Raw
1
module main
2
3
struct Post {
4
title string @[alias]
5
}
6
7
fn main() {
8
$for field in Post.fields {
9
println(field.attrs)
10
}
11
}
12