TypeScript/tests/baselines/reference/instantiateGenericClassWithWrongNumberOfTypeArguments.js
2014-08-14 06:42:18 -07:00

35 lines
801 B
TypeScript

//// [instantiateGenericClassWithWrongNumberOfTypeArguments.ts]
// 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>();
//// [instantiateGenericClassWithWrongNumberOfTypeArguments.js]
// 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
var C = (function () {
function C() {
}
return C;
})();
var c = new C();
var D = (function () {
function D() {
}
return D;
})();
// BUG 794238
var d = new D();