TypeScript/tests/baselines/reference/genericConstructExpressionWithoutArgs.errors.txt

16 lines
460 B
Text
Raw Normal View History

tests/cases/compiler/genericConstructExpressionWithoutArgs.ts(10,1): error TS1005: '(' expected.
==== tests/cases/compiler/genericConstructExpressionWithoutArgs.ts (1 errors) ====
2014-07-13 01:04:16 +02:00
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
!!! error TS1005: '(' expected.