test/script/basic/JDK-8006755.js

changeset 144
4be452026847
parent 47
3f528769aee1
child 952
6d5471a497fb
equal deleted inserted replaced
143:606a1946e3e2 144:4be452026847
29 */ 29 */
30 30
31 var scope = { x: "hello" }; 31 var scope = { x: "hello" };
32 32
33 with (scope) { 33 with (scope) {
34 function main() { 34 var main = function() {
35 if (x != "hello") { 35 if (x != "hello") {
36 fail("x != 'hello'"); 36 fail("x != 'hello'");
37 } 37 }
38 } 38 }
39 } 39 }

mercurial