v/vlib/v/checker/tests/generics_too_many_parameter...

7 lines
230 B
Plaintext

vlib/v/checker/tests/generics_too_many_parameters.vv:6:8: error: expected 1 generic parameter, got 5
4 |
5 | fn main() {
6 | foo<bool, int, bool, bool, int>(1)
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 | }