fix test for #1865 (#1873)

This commit is contained in:
Alex Lam S.L
2017-05-07 02:56:02 +08:00
committed by alexlamsl
parent d8106b6c63
commit 90ed54401b

View File

@@ -2101,8 +2101,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 };
@@ -2111,8 +2111,8 @@ issue_1865: {
}());
}
expect: {
function f(a) {
a.b = false;
function f(some) {
some.thing = false;
}
console.log(function() {
var some = { thing: true };