v/vlib/v/checker/tests/map_unknown_value.out

6 lines
200 B
Plaintext

vlib/v/checker/tests/map_unknown_value.vv:2:23: error: unknown type `DoesNotExist`
1 | struct App {
2 | my_map map[string]DoesNotExist
| ~~~~~~~~~~~~
3 | }