summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testWeirdGetterInvocation.js
blob: f272f3df9783f2bd4c4bec97c9cdba58a5553e8c (plain)
1
2
3
4
5
6
function getArgs() { return arguments; }
var a1 = getArgs(1);
var a2 = getArgs(1);
a1.__proto__ = a2;
delete a1[0];
a1[0];