vxx2 / vlib / v / checker / tests / struct_not_init_err.vv
15 lines · 11 sloc · 169 bytes · b85782b7e7893480e3b193fe67e7404667394290
Raw
1module main
2
3import v.ast
4
5struct Data {
6}
7
8type DataCollection = Data
9
10fn main() {
11 _ := Data
12 _ := DataCollection
13 _ := ast.Type
14 // _ := gui.Animate // for vpm mod
15}
16