TypeScript/tests/baselines/reference/genericConstructExpressionWithoutArgs.errors.txt
2014-07-12 17:30:19 -07:00

15 lines
410 B
Plaintext

==== tests/cases/compiler/genericConstructExpressionWithoutArgs.ts (2 errors) ====
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
~~~~~~
!!! Cannot find name 'number'.
!!! Expression expected.