swc/ecmascript/codegen/tests/references/560c364700fdb6b2.js

9 lines
88 B
JavaScript
Raw Normal View History

(function() {
var a = 1;
a;
var b = 2;
with (c){
b;
}
}());