diff options
Diffstat (limited to 'test/compress/functions.js')
-rw-r--r-- | test/compress/functions.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/compress/functions.js b/test/compress/functions.js index 40a38c02..f01a02e8 100644 --- a/test/compress/functions.js +++ b/test/compress/functions.js @@ -3149,6 +3149,27 @@ issue_3402: { ] } +issue_3439: { + options = { + inline: true, + } + input: { + console.log(typeof function() { + return function(a) { + function a() {} + return a; + }(42); + }()); + } + expect: { + console.log(typeof function(a) { + function a() {} + return a; + }(42)); + } + expect_stdout: "function" +} + issue_3444: { options = { inline: true, |