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