mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
13 lines
171 B
TypeScript
13 lines
171 B
TypeScript
//@module: amd
|
|
//@target: ES3
|
|
|
|
// @filename: m1.ts
|
|
export default function f1() {
|
|
}
|
|
|
|
// @filename: m2.ts
|
|
import f1 from "./m1";
|
|
export default function f2() {
|
|
f1();
|
|
}
|