blob: 47d45f160eea937e0c0850d4fb8881bd443db97c (
plain)
1
2
3
4
5
6
7
8
9
10
|
// |jit-test| allow-oom; allow-overrecursed
gcparam("maxBytes", gcparam("gcBytes") + 1024);
test();
function test() {
var upvar = "";
function f() { upvar += ""; }
test();
eval('');
}
|