summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/cacheir/bug1888346.js
blob: 8e63d86089863c67c080ee557f438c3512b8afae (plain)
1
2
3
4
5
6
7
8
setJitCompilerOption("ion.frequent-bailout-threshold", 1);
for (let i = 0; i < 49; i++) {
  (function () {
    let x = new (function () {})();
    Object.defineProperty(x, "z", {});
    x.z;
  })();
}