blob: bd13f44c6fc7a9b536c6b2073f2fc47fa686a78e [file] [log] [blame]
function fn() {
return Math.max.apply(Math, [1,2,3]);
}
assertEqual(fn(), 3);
test(fn);