michael@0: /* michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/licenses/publicdomain/ michael@0: */ michael@0: michael@0: try { michael@0: var e = new Error(); michael@0: e.name = e; michael@0: "" + e; michael@0: } catch (e) { michael@0: assertEq(e.message, 'too much recursion'); michael@0: }