1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/generic_struct_type_decl_err.out

6 lines
221 B
Plaintext

vlib/v/parser/tests/generic_struct_type_decl_err.vv:1:13: error: generic parameter name needs to be exactly one char
1 | struct GMap<Hashable<K>, V> {
| ~~~~~~~~
2 | map_ map[int]V
3 | }