Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / jit-test / tests / basic / bug608980.js
1
2 /* Don't trip bogus assert. */
3
4 function foo()
5 {
6   var x;
7   while (x = 0) {
8     x = 1;
9   }
10 }
11 foo();