summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug684943.js
blob: 69ec5ca2bd6e9353ea291d8a7f4d863f3942b886 (plain)
1
2
3
4
5
6
7
function foo(x) {
  for (var i = 0; i < 100; i++) {
    x.f === i;
  }
}
foo({f:"three"});