summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug608980.js
blob: 53ad2cbadc54267015f1f1ba4e9f0723093d9a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Don't trip bogus assert. */

function foo()
{
  var x;
  while (x = 0) {
    x = 1;
  }
}
foo();