summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug649771.js
blob: 6ecc2d83e602c6ae52def015d9502fdd3bb31a3c (plain)
1
2
3
4
5
6
7
function f(o) {
    f = o.constructor;
    eval('delete o.x');
}
for(var i=0; i<3; i++) {
    f(RegExp.prototype);
}