TypeScript/tests/baselines/reference/constraintErrors1.symbols
Anders Hejlsberg a4f9bf0fce
Create type aliases for unresolved type symbols (#45976)
* Create type aliases for unresolved type symbols

* Accept new baselines

* Update fourslash tests

* Unresolved import aliases create tagged unresolved symbols

* Add comments

* Accept new baselines

* Add fourslash tests
2021-09-23 13:21:27 -07:00

9 lines
328 B
Plaintext

=== tests/cases/compiler/constraintErrors1.ts ===
function foo5<T extends hm>(test: T) { }
>foo5 : Symbol(foo5, Decl(constraintErrors1.ts, 0, 0))
>T : Symbol(T, Decl(constraintErrors1.ts, 0, 14))
>hm : Symbol(hm)
>test : Symbol(test, Decl(constraintErrors1.ts, 0, 28))
>T : Symbol(T, Decl(constraintErrors1.ts, 0, 14))