blob: 2fafca5f43cd5d4e12e4c3f1d0c9438774f4eae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// |jit-test| error: ReferenceError
function f1(code) {
f = Function(code)
f2()
}
function f2() {
f()
}
f1("d=this.__defineGetter__(\"x\",gc)")
f1("b(x&=w);function b(){}")
|