blob: 875949c7ea436f89f96abdad7e845b2167b03cbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// |jit-test| skip-if: !('oomTest' in this)
x = "x";
lFile(x);
function lFile() {
return oomTest(function() {
let error = new Error("foobar");
let report = createErrorReport(error);
});
}
|