blob: f15f2b268ac44d10511eb8be8aad9d60f658159c [file] [log] [blame]
var result = "";
o = { valueOf:function(){ throw "cow" } };
try {
String.fromCharCode(o);
} catch (e) {
result = e.toString();
}
assertEq(result, "cow");