summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1546232-2.js
blob: bde98444c89e1034bb2d9476bbfa592c81c8d8b2 (plain)
1
2
3
4
5
6
7
8
var g = newGlobal();
g.eval(`
Array.from(function*() {
    yield 1;
    relazifyFunctions();
    yield 1;
}());
`);