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

13 lines
228 B
JavaScript
Raw Normal View History

console.log(
(function (a) {
return (function () {
return a + 1;
})();
})(1),
(function (a) {
return (function (a) {
return a === undefined;
})();
})(2)
);