From 032f096b7f39d12c303e4d0c096619ad3c9f9384 Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Tue, 19 Dec 2017 05:22:05 +0800 Subject: [PATCH] add test for #2613 (#2618) --- test/compress/functions.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/test/compress/functions.js b/test/compress/functions.js index c8b7ed6f..41dfc6a9 100644 --- a/test/compress/functions.js +++ b/test/compress/functions.js @@ -1050,6 +1050,24 @@ unsafe_call_2: { expect_stdout: true } +unsafe_call_3: { + options = { + side_effects: true, + unsafe: true, + } + input: { + console.log(function() { + return arguments[0] + eval("arguments")[1]; + }.call(0, 1, 2)); + } + expect: { + console.log(function() { + return arguments[0] + eval("arguments")[1]; + }(1, 2)); + } + expect_stdout: "3" +} + issue_2616: { options = { evaluate: true, -- 2.34.1