blob: 64b2377daa79f92f3a7a04175956e441c04bb99f [file] [log] [blame]
description(
"Tests that the DFG handles x % 1 correctly."
);
function foo(x) { return x % 1; }
dfgShouldBe(foo, "foo(-5.5)", "-0.5");
dfgShouldBe(foo, "1 / foo(-1)", "-Infinity");