swc/crates/swc_ecma_parser/tests/tsc/importCallExpressionNestedSystem2.ts
2022-02-04 17:08:38 +09:00

11 lines
222 B
TypeScript

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