TypeScript/tests/baselines/reference/instantiateTypeParameter.errors.txt
Cyrus Najmabadi f1a2e41a8a Sort diagnostics in our baseline output.
This was we don't get noisy baselines just because a different phase of the compiler reported
the diagnostic.

This helps with Yui's refactoring work to move grammar checks into the type checker.
2014-12-16 15:56:56 -08:00

15 lines
611 B
Plaintext

tests/cases/compiler/instantiateTypeParameter.ts(2,5): error TS1131: Property or signature expected.
tests/cases/compiler/instantiateTypeParameter.ts(2,12): error TS2304: Cannot find name 'T'.
tests/cases/compiler/instantiateTypeParameter.ts(3,1): error TS1128: Declaration or statement expected.
==== tests/cases/compiler/instantiateTypeParameter.ts (3 errors) ====
interface Foo<T> {
var x: T<>;
~~~
!!! error TS1131: Property or signature expected.
~~~
!!! error TS2304: Cannot find name 'T'.
}
~
!!! error TS1128: Declaration or statement expected.