Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
JSTests
/
stress
/
string-16bit-repeat-overflow.js
blob: f7c41c87c2e69a6b51ee76013a8f8a1b21149302 [
file
] [
log
] [
blame
]
//@ skip if $memoryLimited
var
exception
;
try
{
print
(
'\ud000'
.
repeat
(
2
**
30
));
}
catch
(
e
)
{
exception
=
e
;
}
if
(
exception
!=
"Error: Out of memory"
)
throw
"FAILED"
;