mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
8 lines
103 B
JavaScript
8 lines
103 B
JavaScript
(function() {
|
|
var a;
|
|
with (b){
|
|
a;
|
|
}
|
|
a = a += 1; // This should be reduce
|
|
}());
|