Bug 1471361: Add test case r=tcampbell

--HG--
extra : rebase_source : 4e020f3403fe955a3a7d5094ab680d713b5f7a8d
This commit is contained in:
Matthew Gaudet 2018-07-09 17:50:27 -04:00
Родитель 5fff1762ad
Коммит 2a28b554e5
1 изменённых файлов: 13 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,13 @@
// This is a fuzzer-found crash inducing test.
// Pass is simply not crashing.
(function () {
f = function(y) {
~+y;
}
x = [new Number];
for (var j = 0; j < 3; ++j) {
for (var k = 0; k < 3; ++k) {
f(x[k]);
}
}
})();