blob: db7b57aa1bc6d92c96fa4cec3e4879dd1a686f04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// |jit-test| error: undefined
(function() {
throw (function f(a, b) {
if (a.h == b) {
return eval("((function(){return 1})())!=this")
}
f(b)
})([], 0)
})()
/* Don't assert/crash. */
|