vxx2 / vlib / v / checker / tests / struct_not_init_err.out
21 lines · 21 sloc · 742 bytes · 3d60410b605d001e54f280070d5f952da9de1112
Raw
1vlib/v/checker/tests/struct_not_init_err.vv:11:7: error: `Data` must be initialized
2 9 |
3 10 | fn main() {
4 11 | _ := Data
5 | ~~~~
6 12 | _ := DataCollection
7 13 | _ := ast.Type
8vlib/v/checker/tests/struct_not_init_err.vv:12:7: error: `DataCollection` must be initialized
9 10 | fn main() {
10 11 | _ := Data
11 12 | _ := DataCollection
12 | ~~~~~~~~~~~~~~
13 13 | _ := ast.Type
14 14 | // _ := gui.Animate // for vpm mod
15vlib/v/checker/tests/struct_not_init_err.vv:13:11: error: `v.ast.Type` must be initialized
16 11 | _ := Data
17 12 | _ := DataCollection
18 13 | _ := ast.Type
19 | ~~~~
20 14 | // _ := gui.Animate // for vpm mod
21 15 | }
22