blob: 05aa1d4a9b690c9409583a41bed5cbcd8c69e629 [file] [log] [blame]
function reportCompare (expected, actual) {
var actual_t = typeof actual;
var output = "";
output += "x" + actual_t + " ";
expected != actual;
output += undefined;
}
gczeal(7,1);
for (var i=0; i<900; i++) {
reportCompare("abc", function() {});
reportCompare(null, 10);
}