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_parameter_err.out

8 lines
281 B
Plaintext

vlib/v/parser/tests/generic_struct_parameter_err.vv:17:16: error: cannot use `MyNode[string]` as `string` in argument 1 to `datatypes.LinkedList[string].push`
15 | data: data
16 | }
17 | c.lst.push[T](node)
| ~~~~
18 | }
19 |