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

12 lines
326 B
Plaintext

==== 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.