rust-clippy/tests/ui/precedence.rs

62 lines
1.4 KiB
Rust
Raw Normal View History

2019-01-13 13:24:21 +00:00
// run-rustfix
#![warn(clippy::precedence)]
#![allow(unused_must_use, clippy::no_effect, clippy::unnecessary_operation)]
#![allow(clippy::identity_op)]
#![allow(clippy::eq_op)]
2018-01-16 14:52:16 +00:00
macro_rules! trip {
2018-12-09 22:26:16 +00:00
($a:expr) => {
2019-01-13 13:24:21 +00:00
match $a & 0b1111_1111u8 {
2018-12-09 22:26:16 +00:00
0 => println!("a is zero ({})", $a),
_ => println!("a is {}", $a),
}
};
2018-01-16 14:52:16 +00:00
}
2015-05-06 10:59:08 +00:00
fn main() {
1 << 2 + 3;
1 + 2 << 3;
4 >> 1 + 1;
1 + 3 >> 2;
1 ^ 1 - 1;
3 | 2 - 1;
3 & 5 - 2;
-1i32.abs();
-1f32.abs();
2017-02-08 13:58:07 +00:00
2015-08-30 15:32:35 +00:00
// These should not trigger an error
let _ = (-1i32).abs();
let _ = (-1f32).abs();
let _ = -(1i32).abs();
let _ = -(1f32).abs();
let _ = -(1i32.abs());
let _ = -(1f32.abs());
2018-01-16 14:52:16 +00:00
// Odd functions should not trigger an error
2020-04-10 08:40:49 +00:00
let _ = -1f64.asin();
let _ = -1f64.asinh();
let _ = -1f64.atan();
let _ = -1f64.atanh();
let _ = -1f64.cbrt();
let _ = -1f64.fract();
let _ = -1f64.round();
let _ = -1f64.signum();
let _ = -1f64.sin();
let _ = -1f64.sinh();
let _ = -1f64.tan();
let _ = -1f64.tanh();
let _ = -1f64.to_degrees();
let _ = -1f64.to_radians();
// Chains containing any non-odd function should trigger (issue #5924)
let _ = -1.0_f64.cos().cos();
let _ = -1.0_f64.cos().sin();
let _ = -1.0_f64.sin().cos();
// Chains of odd functions shouldn't trigger
let _ = -1f64.sin().sin();
2018-01-16 14:52:16 +00:00
let b = 3;
trip!(b * 8);
2015-05-06 10:59:08 +00:00
}