mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +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;
|
|
}
|