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

12 lines
326 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/instantiateTypeParameter.ts (4 errors) ====
interface Foo<T> {
var x: T<>;
~~~
!!! Property or signature expected.
~~
!!! Type argument list cannot be empty.
~~~
!!! Cannot find name 'T'.
}
~
!!! Declaration or statement expected.