TypeScript/tests/cases/conformance/types/typeParameters/typeArgumentLists/instantiateGenericClassWithWrongNumberOfTypeArguments.ts
2014-07-12 17:30:19 -07:00

16 lines
No EOL
317 B
TypeScript

// it is always an error to provide a type argument list whose count does not match the type parameter list
// both of these attempts to construct a type is an error
class C<T> {
x: T;
}
var c = new C<number, number>();
class D<T, U> {
x: T
y: U
}
// BUG 794238
var d = new D<number>();