vxx2 / vlib / v / checker / tests / struct_multiple_attrs_test.vv
9 lines · 7 sloc · 78 bytes · 757929392e0e7a75fc1272116460981e589737d5
Raw
1module main
2
3struct Test {
4 a int @[a]@[b]
5}
6
7fn test_main() {
8 assert true
9}
10