blob: 667cdff4f7efca1395a636399940b8423fe8deb8 [file] [log] [blame]
keith_miller@apple.combcc77f22016-07-15 06:03:25 +00001// Copyright (c) 2012 Ecma International. All rights reserved.
2// This code is governed by the BSD license found in the LICENSE file.
3/*---
4es5id: 10.4.2-1-1
5description: Direct call to eval has context set to local context
6---*/
7
8var __10_4_2_1_1_1 = "str";
9function testcase() {
10 var __10_4_2_1_1_1 = "str1";
11 assert(eval("\'str1\' === __10_4_2_1_1_1"), 'direct eval');
12}
13testcase();