TypeScript/tests/cases/compiler/genericConstructExpressionWithoutArgs.ts
2014-07-12 17:30:19 -07:00

10 lines
195 B
TypeScript

class B { }
var b = new B; // no error
class C<T> {
x: T;
}
var c = new C // C<any>
var c2 = new C<number> // error, type params are actually part of the arg list so you need both