summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug640993.js
blob: 45ce0856a31b9ab9be10cbef7cf0146a301add90 (plain)
1
2
3
4
5
6
7
function f() {
    return f;
}
f.__proto__ = null;
gc();
f();
new f();