summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1207413.js
blob: f66c65ab6c84d4d68dec3fd0d5d03b69da99e39a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if (typeof oomAfterAllocations !== 'function')
    quit();

function first(a) {
    return a[0];
}

try {
    first([function() {}]);
    first([function() {}]);
    oomAfterAllocations(50);
    first([function() {}]);
} catch(e) {
    // ignore oom
}