swc/ecmascript/minifier/tests/terser/compress/functions/issue_2616/input.js

12 lines
189 B
JavaScript
Raw Normal View History

var c = "FAIL";
(function () {
function f() {
function g(NaN) {
(true << NaN) - 0 / 0 || (c = "PASS");
}
g([]);
}
f();
})();
console.log(c);