v2 / vlib / v / checker / tests / map_def_err.out
5 lines · 5 sloc · 172 bytes · 03e89b78512880a0f59117b17a71e21192d51659
Raw
1vlib/v/checker/tests/map_def_err.vv:2:7: error: cannot use the map type without key and value definition
2 1 | struct Foo {
3 2 | bar map
4 | ~~~
5 3 | }
6