summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/self-hosting/makeconstructible-function-inherited-prototype-property.js
blob: ff4d0c000a860536a139b99ade11c603238014da (plain)
1
2
3
var proxy = new Proxy({ get: function() { throw 42; } }, {});
Function.prototype.__proto__ = proxy;
this.hasOwnProperty("Intl");