| 1 | vlib/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 |