summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/chunk/bug712267.js
blob: 929d4d5b7331d6a84aa2d14011226b1fc37588f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
expected = 100;
function slice(a, b) {
  return expected--;
}
function f() {
  var length = 8.724e02 ;
  var index = 0;
  function get3() {
    return slice(index, ++index);
  }
  var bytes = null;
  while (bytes = get3()) {  }
}
f();