TypeScript/tests/cases/compiler/noUsedBeforeDefinedErrorInAmbientContext1.ts
Yui 80db0f2f16 [Release-2.0] Fix 9782: do not report blocked-scope-used-before-declaration error in ambient context (#9789) (#9830)
* Do not report block-scoped-used-before-declaration in ambient context

* Add tests and baselines
2016-07-19 15:16:27 -07:00

4 lines
94 B
TypeScript

// @filename: test.d.ts
declare var S: typeof A; // no error
declare const A: number;