blob: 7bfc2192d0d6d88ca6142d20003a6ece1f4f61fc [file] [log] [blame]
description(
"Tests what happens when you multiply a big unknown integer with a small known integer."
);
function foo(a) {
return a * 65536;
}
for (var i = 0; i < 100; ++i)
shouldBe("foo(2147483647)", "140737488289792");