mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
17 lines
232 B
JavaScript
17 lines
232 B
JavaScript
export var foo;
|
|
export function init() {
|
|
function bar() {
|
|
foo = bar;
|
|
console.log(111);
|
|
}
|
|
return bar;
|
|
}
|
|
|
|
function bar() {
|
|
foo = bar;
|
|
console.log(111);
|
|
}
|
|
export function init1() {
|
|
return bar;
|
|
}
|