mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
4f866de878
**Related issue:** - Closes #7591.
9 lines
98 B
JavaScript
9 lines
98 B
JavaScript
var x = someFunction;
|
|
|
|
function someFunction() {
|
|
return 2;
|
|
}
|
|
|
|
console.log(x);
|
|
console.log(x);
|