Table of Contents

A type cannot have a single variadic type parameter as type parameter (AJTERR10042)

Product(s) Karo.NET Compiler

Description

A variadic type parameter must always be accompanied by another type parameter.

test::testClass<...T> { }
//              ^^^^ This variadic type parameter is the only type parameter, which is not valid.

How can I resolve this error?

Introduce atleast one other type parameter.