TypeScript/tests/baselines/reference/instantiateGenericClassWithWrongNumberOfTypeArguments.js

35 lines
801 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [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
2014-07-13 01:04:16 +02:00
var C = (function () {
function C() {
}
return C;
})();
var c = new C();
var D = (function () {
function D() {
}
return D;
})();
// BUG 794238
2014-07-13 01:04:16 +02:00
var d = new D();