blob: 44df7268f36dfaea138f0ac37e13fa88baa3d492 [file] [log] [blame]
function X () {};
function Y () {};
function testCallProtoMethod() {
var a = [new X, new X, __proto__, new Y, new Y];
}
testCallProtoMethod();
function testNot() {
var r;
for (var i = 0; i < 10; ++i)
r = [];
}
testNot();