blob: 1ff6fcc5a0f439cc66ecb237fa2175b6db047b3a [file] [log] [blame]
const s1 = (-1).toLocaleString().padEnd(2**31-1, 'aa');
try {
'' < s1;
} catch (e) {
exception = e;
}
if (exception != 'RangeError: Out of memory')
throw "FAILED";
exception = undefined;
const s2 = (-1).toLocaleString().padEnd(2**31-1, 'aa');
try {
s2 < '';
} catch (e) {
exception = e;
}
if (exception != 'RangeError: Out of memory')
throw "FAILED";