blob: c400d76875f1b0d37d6d4efc3fd8dab06a24a8dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// |jit-test| error: is not a function
function f() {
(e)
}
(x = new Proxy(Function, (function(x) {
return {
get: function(r, b) {
return x[b]
}
}
})(/x/)))
for (e in [0]) {
gczeal(2)
} ( [1,2,3])("")
|