TypeScript/tests/cases/compiler/esModuleInteropImportDefaultWhenAllNamedAreDefaultAlias.ts
Wesley Wigham b5b7fc4f1d
Flag default imports with named imports as needing importStar (#23795)
* Flag default imports with named imports as needing importStar

* Restructure helpers a bit, add double-default testcase
2018-05-02 16:20:34 -07:00

4 lines
90 B
TypeScript

// @esModuleInterop: true
import {default as a, default as b} from "m";
void a;
void b;