blob: 03763dba4881722f3a738b212676eac3183d5f19 [file] [log] [blame]
fn original_clusterfuzz_code() {
atan2(1, 0.100000001);
}
fn more_tests_that_would_fail() {
{
let a = atan2(1, 0.100000001);
let b = atan2(0.100000001, 1);
}
{
let a = (1 + 1.5);
let b = (1.5 + 1);
}
{
atan2(1, 0.100000001);
atan2(0.100000001, 1);
}
}