2022-08-10 20:01:17 +00:00
|
|
|
fn original_clusterfuzz_code() {
|
2022-10-12 19:13:38 +00:00
|
|
|
atan2(1, 0.1);
|
2022-08-10 20:01:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn more_tests_that_would_fail() {
|
|
|
|
{
|
2022-10-12 19:13:38 +00:00
|
|
|
let a = atan2(1, 0.1);
|
|
|
|
let b = atan2(0.1, 1);
|
2022-08-10 20:01:17 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
let a = (1 + 1.5);
|
|
|
|
let b = (1.5 + 1);
|
|
|
|
}
|
|
|
|
{
|
2022-10-12 19:13:38 +00:00
|
|
|
atan2(1, 0.1);
|
|
|
|
atan2(0.1, 1);
|
2022-08-10 20:01:17 +00:00
|
|
|
}
|
|
|
|
}
|