Variadic type parameter must be last type parameter (AJTERR10041)
| Product(s) | Karo.NET Compiler |
|---|
Description
A variadic type parameter must always be specified at the last position.
test::testClass<...T, T2> { }
// ^^^^ This variadic type parameter is not at the last position
How can I resolve this error?
Move the variadic type parameter to the last position.