swc/crates/swc_ecma_parser/tests/tsc/importCallExpressionNestedES2015.ts

11 lines
222 B
TypeScript
Raw Normal View History

// @module: es2015
// @target: es6
// @skipLibCheck: true
// @lib: es6
// @filename: foo.ts
export default "./foo";
// @filename: index.ts
async function foo() {
return await import((await import("./foo")).default);
}