blob: f86c77ca39b962ec994788b92055e95045d0e22a [file] [log] [blame]
description(
"This test checks that non-numeric sort functions always have JIT code. This test passes if it does not crash."
);
function f()
{
}
[].sort(f);
function g()
{
}
function h(x)
{
x();
}
h(g);
h(g);
h(g);
h(f);
var successfullyParsed = true;