2019-09-25 06:49:38 -05:00
|
|
|
// does not test any rustfixable lints
|
|
|
|
|
2018-12-08 11:56:59 -06:00
|
|
|
#[rustfmt::skip]
|
2018-07-28 10:34:52 -05:00
|
|
|
#[warn(clippy::eq_op)]
|
2021-09-28 12:03:12 -05:00
|
|
|
#[allow(clippy::identity_op, clippy::double_parens)]
|
2018-07-28 10:34:52 -05:00
|
|
|
#[allow(clippy::no_effect, unused_variables, clippy::unnecessary_operation, clippy::short_circuit_statement)]
|
2019-09-20 01:16:33 -05:00
|
|
|
#[allow(clippy::nonminimal_bool)]
|
2019-09-20 00:54:16 -05:00
|
|
|
#[allow(unused)]
|
2020-10-28 17:36:07 -05:00
|
|
|
#[allow(clippy::unnecessary_cast)]
|
2015-04-30 04:48:43 -05:00
|
|
|
fn main() {
|
2015-08-11 13:22:20 -05:00
|
|
|
// simple values and comparisons
|
2017-02-08 07:58:07 -06:00
|
|
|
1 == 1;
|
|
|
|
"no" == "no";
|
2015-08-11 13:22:20 -05:00
|
|
|
// even though I agree that no means no ;-)
|
2017-02-08 07:58:07 -06:00
|
|
|
false != false;
|
|
|
|
1.5 < 1.5;
|
|
|
|
1u64 >= 1u64;
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2015-08-13 02:44:03 -05:00
|
|
|
// casts, methods, parentheses
|
2017-02-08 07:58:07 -06:00
|
|
|
(1 as u64) & (1 as u64);
|
|
|
|
1 ^ ((((((1))))));
|
2015-08-11 13:22:20 -05:00
|
|
|
|
|
|
|
// unary and binary operators
|
2017-02-08 07:58:07 -06:00
|
|
|
(-(2) < -(2));
|
2015-04-30 04:48:43 -05:00
|
|
|
((1 + 1) & (1 + 1) == (1 + 1) & (1 + 1));
|
2017-02-08 07:58:07 -06:00
|
|
|
(1 * 2) + (3 * 4) == 1 * 2 + 3 * 4;
|
2015-08-11 13:22:20 -05:00
|
|
|
|
|
|
|
// various other things
|
2017-02-08 07:58:07 -06:00
|
|
|
([1] != [1]);
|
|
|
|
((1, 2) != (1, 2));
|
2015-04-30 04:48:43 -05:00
|
|
|
vec![1, 2, 3] == vec![1, 2, 3]; //no error yet, as we don't match macros
|
2015-08-21 05:26:03 -05:00
|
|
|
|
|
|
|
// const folding
|
2017-02-08 07:58:07 -06:00
|
|
|
1 + 1 == 2;
|
|
|
|
1 - 1 == 0;
|
|
|
|
|
|
|
|
1 - 1;
|
|
|
|
1 / 1;
|
|
|
|
true && true;
|
|
|
|
|
|
|
|
true || true;
|
2016-02-03 13:42:05 -06:00
|
|
|
|
2016-01-30 13:10:14 -06:00
|
|
|
|
2016-11-16 14:57:56 -06:00
|
|
|
let a: u32 = 0;
|
|
|
|
let b: u32 = 0;
|
2016-03-24 10:11:38 -05:00
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
a == b && b == a;
|
|
|
|
a != b && b != a;
|
|
|
|
a < b && b > a;
|
|
|
|
a <= b && b >= a;
|
|
|
|
|
2016-01-30 13:10:14 -06:00
|
|
|
let mut a = vec![1];
|
2017-02-08 07:58:07 -06:00
|
|
|
a == a;
|
2016-01-30 13:10:14 -06:00
|
|
|
2*a.len() == 2*a.len(); // ok, functions
|
|
|
|
a.pop() == a.pop(); // ok, functions
|
2017-04-28 10:07:39 -05:00
|
|
|
|
2017-12-22 12:37:44 -06:00
|
|
|
check_ignore_macro();
|
2018-03-23 13:26:52 -05:00
|
|
|
|
|
|
|
// named constants
|
|
|
|
const A: u32 = 10;
|
|
|
|
const B: u32 = 10;
|
|
|
|
const C: u32 = A / B; // ok, different named constants
|
|
|
|
const D: u32 = A / A;
|
2017-12-22 12:37:44 -06:00
|
|
|
}
|
|
|
|
|
2018-12-08 11:56:59 -06:00
|
|
|
#[rustfmt::skip]
|
2017-12-22 12:37:44 -06:00
|
|
|
macro_rules! check_if_named_foo {
|
|
|
|
($expression:expr) => (
|
|
|
|
if stringify!($expression) == "foo" {
|
|
|
|
println!("foo!");
|
|
|
|
} else {
|
|
|
|
println!("not foo.");
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-01-22 01:48:00 -06:00
|
|
|
macro_rules! bool_macro {
|
|
|
|
($expression:expr) => {
|
|
|
|
true
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(clippy::short_circuit_statement)]
|
2017-12-22 12:37:44 -06:00
|
|
|
fn check_ignore_macro() {
|
|
|
|
check_if_named_foo!(foo);
|
2020-01-22 01:48:00 -06:00
|
|
|
// checks if the lint ignores macros with `!` operator
|
|
|
|
!bool_macro!(1) && !bool_macro!("");
|
2015-04-30 04:48:43 -05:00
|
|
|
}
|
2020-12-06 08:01:03 -06:00
|
|
|
|
|
|
|
struct Nested {
|
|
|
|
inner: ((i32,), (i32,), (i32,)),
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_nested(n1: &Nested, n2: &Nested) -> bool {
|
|
|
|
// `n2.inner.0.0` mistyped as `n1.inner.0.0`
|
|
|
|
(n1.inner.0).0 == (n1.inner.0).0 && (n1.inner.1).0 == (n2.inner.1).0 && (n1.inner.2).0 == (n2.inner.2).0
|
|
|
|
}
|