mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 06:20:37 +02:00
10 lines
153 B
JavaScript
10 lines
153 B
JavaScript
var exception;
|
|
try {
|
|
print('\ud000'.repeat(2**30));
|
|
} catch (e) {
|
|
exception = e;
|
|
}
|
|
|
|
if (exception != "Error: Out of memory")
|
|
throw "FAILED";
|