fix test for #1865

This commit is contained in:
alexlamsl 2017-05-07 02:09:12 +08:00
parent 7313465cba
commit ece97d3c0a

View File

@ -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 };