diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/compress/dead-code.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/compress/dead-code.js b/test/compress/dead-code.js index 591dd3a9..7ea380d2 100644 --- a/test/compress/dead-code.js +++ b/test/compress/dead-code.js @@ -828,3 +828,30 @@ issue_2597: { } expect_stdout: "PASS" } + +issue_2666: { + options = { + dead_code: true, + } + input: { + function f(a) { + return a = { + p: function() { + return a; + } + }; + } + console.log(typeof f().p()); + } + expect: { + function f(a) { + return a = { + p: function() { + return a; + } + }; + } + console.log(typeof f().p()); + } + expect_stdout: "object" +} |