aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/compress/reduce_vars.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/compress/reduce_vars.js b/test/compress/reduce_vars.js
index 22c1a874..5a79f574 100644
--- a/test/compress/reduce_vars.js
+++ b/test/compress/reduce_vars.js
@@ -2440,8 +2440,8 @@ issue_1865: {
unsafe: true,
}
input: {
- function f(a) {
- a.b = false;
+ function f(some) {
+ some.thing = false;
}
console.log(function() {
var some = { thing: true };
@@ -2450,8 +2450,8 @@ issue_1865: {
}());
}
expect: {
- function f(a) {
- a.b = false;
+ function f(some) {
+ some.thing = false;
}
console.log(function() {
var some = { thing: true };