TypeScript/tests/baselines/reference/typeLookupInIIFE.types
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

13 lines
249 B
Plaintext

=== tests/cases/conformance/salsa/a.js ===
// #22973
var ns = (function() {})();
>ns : void
>(function() {})() : void
>(function() {}) : () => void
>function() {} : () => void
/** @type {ns.NotFound} */
var crash;
>crash : ns.NotFound