2022-08-10 20:01:17 +00:00
|
|
|
fn original_clusterfuzz_code() {
|
2023-03-02 21:28:45 +00:00
|
|
|
_ = atan2(1, 0.10000000000000000555);
|
2022-08-10 20:01:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn more_tests_that_would_fail() {
|
|
|
|
{
|
2023-03-02 21:28:45 +00:00
|
|
|
let a = atan2(1, 0.10000000000000000555);
|
|
|
|
let b = atan2(0.10000000000000000555, 1);
|
2022-08-10 20:01:17 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
let a = (1 + 1.5);
|
|
|
|
let b = (1.5 + 1);
|
|
|
|
}
|
|
|
|
{
|
2023-03-02 21:28:45 +00:00
|
|
|
_ = atan2(1, 0.10000000000000000555);
|
|
|
|
_ = atan2(0.10000000000000000555, 1);
|
2022-08-10 20:01:17 +00:00
|
|
|
}
|
|
|
|
}
|