vxx2 / vlib / v / checker / tests / comptime_field_name_not_exist.vv
16 lines · 14 sloc · 266 bytes · f55c2956fbd893cf22df1780724a2c4c436332e2
Raw
1@[foo: 123]
2@[bar]
3fn abc() {
4}
5
6fn main() {
7 mut c := 0
8 $for f in abc.attributes {
9 $if f.has_xdargfdsafsdfx {
10 c++
11 println('has_arg')
12 }
13 }
14 assert c == 0
15}
16
17