blob: b53dff06ba179511b93b51f3ee750d0139b28045 [file] [log] [blame]
description(
"This tests that bytecode generation doesn't crash on a comparison to null with an ignored result."
);
function equalToNullTest(a)
{
a == null;
return true;
}
shouldBeTrue("equalToNullTest()");
function notEqualToNullTest(a)
{
a != null;
return true;
}
shouldBeTrue("notEqualToNullTest()");
var successfullyParsed = true;