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