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

15 lines
410 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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.