11.1.5-2gs.js (370B)
1 // Copyright (c) 2012 Ecma International. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 es5id: 11.1.5-2gs 6 description: > 7 Duplicate definitions of data properties are allowed in ObjectLiterals. 8 ---*/ 9 10 var obj = { _11_1_5_2_gs: 10, _11_1_5_2_gs: 20 }; 11 assert.sameValue(obj._11_1_5_2_gs, 20); 12 13 reportCompare(0, 0);