mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
17 lines
282 B
TypeScript
17 lines
282 B
TypeScript
|
// @module: umd
|
|||
|
// @target: esnext
|
|||
|
// @filename: 0.ts
|
|||
|
export function foo() { return "foo"; }
|
|||
|
|
|||
|
// @filename: 1.ts
|
|||
|
import("./0");
|
|||
|
var p1 = import("./0");
|
|||
|
p1.then(zero => {
|
|||
|
return zero.foo();
|
|||
|
});
|
|||
|
|
|||
|
export var p2 = import("./0");
|
|||
|
|
|||
|
function foo() {
|
|||
|
const p2 = import("./0");
|
|||
|
}
|