function arityMismatchMissingArg(arg) { for (var a = 0, i = 1; i < 10000; i *= 2) { a += i; } return a; } assertEq(arityMismatchMissingArg(), 16383);