summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-886551-1.js
blob: b3f2bcd45f8cbc397e7d929ff65e51d081c70453 (plain)
1
2
3
4
5
6
7
8
if (this.hasOwnProperty('Intl')) {
    gc();
    gcslice(1);
    var thisValues = [ "x" ];
    thisValues.forEach(function (value) {
            var format = Intl.DateTimeFormat.call(value);
    });
}