blob: 1425dafebb4a010e69c345c06208bd6e065eac4d [file] [log] [blame]
function toPrinted(value) {}
function reportCompare (expected, actual, description) {
if (expected != actual)
+ toPrinted(actual)
}
test();
function test() {
reportCompare();
try {
test();
} catch (e) {
try {
new test();
} catch(e) {}
}
reportCompare();
}