blob: f18b3798be3a108a2a109a0aa5d24157d65ad716 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 12.10-0-9
description: with introduces scope - name lookup finds outer variable
flags: [noStrict]
---*/
function f(o) {
var x = 42;
function innerf(o) {
with (o) {
return x;
}
}
return innerf(o);
}
assert.sameValue(f({}), 42);