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