Add a test for bug 719750.

This commit is contained in:
Gary Kwong 2012-06-22 12:02:02 -07:00
parent e352a152a3
commit 30fca2f26c

View File

@ -0,0 +1,13 @@
function f( ) {
var [ [x], e ] = ["*", "/", "%"];
function h() {
for (var i = 0; i < 5; ++i) {
x = i * 2;
}
}
h();
assertEq(x, 8);
print(x);
}
f();