mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 10:37:56 +03:00
c6b22c57f8
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
7 lines
73 B
JavaScript
7 lines
73 B
JavaScript
var b = 10;
|
|
|
|
!(function () {
|
|
b = 100;
|
|
})(),
|
|
console.log(100, b);
|