mirror of
https://github.com/swc-project/swc.git
synced 2024-12-28 08:04:43 +03:00
7 lines
92 B
JavaScript
7 lines
92 B
JavaScript
|
import { foo } from './d';
|
||
|
|
||
|
console.log('loading c.js');
|
||
|
|
||
|
export function c() {
|
||
|
foo();
|
||
|
}
|