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

8 lines
299 B
Plaintext

vlib/v/checker/tests/generics_struct_declaration_err.vv:5:1: error: generic struct declaration must specify the generic type names, e.g. Foo<T>
3 | }
4 |
5 | struct MyGenericChannelStruct {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 | GenericChannelStruct<T>
7 | msg string