v2 / vlib / v / checker / tests / generics_struct_declaration_err.out
7 lines · 7 sloc · 344 bytes · e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1vlib/v/checker/tests/generics_struct_declaration_err.vv:5:1: error: generic struct `MyGenericChannelStruct` declaration must specify the generic type names, e.g. MyGenericChannelStruct[T]
2 3 | }
3 4 |
4 5 | struct MyGenericChannelStruct {
5 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 6 | GenericChannelStruct[T]
7 7 | msg string
8