blob: aab6b4dff838150e61be079e988105db1500a3c9 [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: 10.4.2-2-c-1
description: >
Direct val code in non-strict mode - can instantiate variable in
calling context
flags: [noStrict]
---*/
function testcase() {
var x = 0;
function inner() {
eval("var x = 1");
assert.sameValue(x, 1, "x");
}
inner();
}
testcase();