mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 14:30:27 +02:00
16 lines
233 B
JavaScript
16 lines
233 B
JavaScript
//@ requireOptions("--jitPolicyScale=0")
|
|
|
|
// This test should not crash.
|
|
|
|
function test(array) {
|
|
return array.push(0, 0.1);
|
|
}
|
|
|
|
for (var i = 0; i < 100000; ++i) {
|
|
test([])
|
|
}
|
|
|
|
for (var i = 0; i < 100000; ++i) {
|
|
test([0])
|
|
}
|