michael@0: // |jit-test| error: InternalError: too much recursion michael@0: b = {}; michael@0: b.__proto__ = evalcx("lazy"); michael@0: function g() { michael@0: g(b.toString()) michael@0: } michael@0: g();