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

38 lines
708 B
JavaScript

//// [instantiateNonGenericTypeWithTypeArguments.ts]
// it is an error to provide type arguments to a non-generic call
// all of these are errors
class C {
x: string;
}
var c = new C<number>();
function Foo(): void { }
var r = new Foo<number>();
var f: { (): void };
var r2 = new f<number>();
var a: any;
// BUG 790977
var r2 = new a<number>();
//// [instantiateNonGenericTypeWithTypeArguments.js]
// it is an error to provide type arguments to a non-generic call
// all of these are errors
var C = (function () {
function C() {
}
return C;
})();
var c = new C();
function Foo() {
}
var r = new Foo();
var f;
var r2 = new f();
var a;
// BUG 790977
var r2 = new a();