swc/ecmascript/minifier/tests/terser/compress/drop-unused/issue_2665/input.js

10 lines
143 B
JavaScript
Raw Normal View History

var a = 1;
function g() {
a-- && g();
}
typeof h == "function" && h();
function h() {
typeof g == "function" && g();
}
console.log(a);