summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1053676.js
blob: 3b3b0b117ac847d41367d2122c9f23d4b7035f05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// |jit-test| --ion-eager;
if (typeof Symbol !== "function") quit(0);

var x
(function() {
    x
}());
verifyprebarriers();
x = x * 0
x = Symbol();
gc();
evalcx("x=1", this);