Sign in
webkit
/
WebKit
/
69084d7b0eae184a8076d683d5feee69bc80ce44
/
.
/
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"
;