Sign in
webkit
/
WebKit
/
f001775e00ba3d98bcaa7447bfcd79b351889919
/
.
/
JSTests
/
stress
/
missing-exception-check-in-array-prototype-fastJoin.js
blob: aa35820ccce263090d30efa92bf144c09b0fac2a [
file
] [
log
] [
blame
]
//@ runDefault
try
{
const
s
=
(
10
).
toLocaleString
().
padEnd
(
2
**
31
-
1
,
'aa'
);
RegExp
([
s
]);
}
catch
(
e
)
{
exception
=
e
;
}
if
(
exception
!=
"Error: Out of memory"
)
throw
"FAILED"
;