TypeScript/tests/cases/compiler/importNonExportedMember3.ts
Andrew Branch 20471182fc
Fix crash when trying to import a non-exported type (#36619)
* Fix crash when trying to import a non-exported type

* Add related info on each declaration
2020-02-05 08:27:49 -08:00

9 lines
127 B
TypeScript

// @Filename: a.ts
export {}
interface Foo {}
interface Foo {}
namespace Foo {}
// @Filename: b.ts
import { Foo } from './a';