summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug827659-1.js
blob: f56ef46e3cc5111203f7f50605c3381b8e4f747d (plain)
1
2
3
4
5
6
7
8
9
10
11
function f() {
    return y.byteOffset;
}
var y;
for (var j = 0; j < 1; ++j) {
    y = new Float32Array();
}
f();
y = 0;
assertEq(f(), undefined);
assertEq(f(), undefined);