2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::all)]
|
2016-02-27 16:57:36 +00:00
|
|
|
#![allow(unused_variables)]
|
|
|
|
#![allow(unused_assignments)]
|
2018-07-28 15:34:52 +00:00
|
|
|
#![allow(clippy::if_same_then_else)]
|
|
|
|
#![allow(clippy::deref_addrof)]
|
2021-07-21 03:23:22 +00:00
|
|
|
#![allow(clippy::nonminimal_bool)]
|
2016-02-27 16:57:36 +00:00
|
|
|
|
2019-02-26 05:49:46 +00:00
|
|
|
fn foo() -> bool {
|
|
|
|
true
|
|
|
|
}
|
2016-02-27 16:59:04 +00:00
|
|
|
|
2019-02-26 05:49:46 +00:00
|
|
|
#[rustfmt::skip]
|
2016-02-27 16:57:36 +00:00
|
|
|
fn main() {
|
|
|
|
// weird op_eq formatting:
|
|
|
|
let mut a = 42;
|
2018-12-10 14:46:01 +00:00
|
|
|
a =- 35;
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this looks like you are trying to use `.. -= ..`, but you really are doing
|
|
|
|
//~| NOTE: to remove this lint, use either `-=` or `= -`
|
2018-12-10 14:46:01 +00:00
|
|
|
a =* &191;
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this looks like you are trying to use `.. *= ..`, but you really are doing
|
|
|
|
//~| NOTE: to remove this lint, use either `*=` or `= *`
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-27 16:57:36 +00:00
|
|
|
let mut b = true;
|
2018-12-10 14:46:01 +00:00
|
|
|
b =! false;
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: this looks like you are trying to use `.. != ..`, but you really are doing
|
|
|
|
//~| NOTE: to remove this lint, use either `!=` or `= !`
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-02-27 16:57:36 +00:00
|
|
|
// those are ok:
|
|
|
|
a = -35;
|
|
|
|
a = *&191;
|
|
|
|
b = !false;
|
2017-02-03 11:10:30 +00:00
|
|
|
|
|
|
|
// possible missing comma in an array
|
2017-02-04 12:02:53 +00:00
|
|
|
let _ = &[
|
2018-12-10 14:46:01 +00:00
|
|
|
-1, -2, -3 // <= no comma here
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: possibly missing a comma here
|
|
|
|
//~| NOTE: to remove this lint, add a comma or write the expr in a single line
|
2018-12-10 14:46:01 +00:00
|
|
|
-4, -5, -6
|
2017-02-03 11:10:30 +00:00
|
|
|
];
|
2017-02-04 12:02:53 +00:00
|
|
|
let _ = &[
|
2018-12-10 14:46:01 +00:00
|
|
|
-1, -2, -3 // <= no comma here
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: possibly missing a comma here
|
|
|
|
//~| NOTE: to remove this lint, add a comma or write the expr in a single line
|
2018-12-10 14:46:01 +00:00
|
|
|
*4, -5, -6
|
2017-02-04 12:02:53 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// those are ok:
|
2018-12-10 14:46:01 +00:00
|
|
|
let _ = &[
|
|
|
|
-1, -2, -3,
|
|
|
|
-4, -5, -6
|
|
|
|
];
|
|
|
|
let _ = &[
|
|
|
|
-1, -2, -3,
|
|
|
|
-4, -5, -6,
|
|
|
|
];
|
|
|
|
let _ = &[
|
|
|
|
1 + 2, 3 +
|
|
|
|
4, 5 + 6,
|
|
|
|
];
|
2018-11-04 08:02:49 +00:00
|
|
|
|
|
|
|
// don't lint for bin op without unary equiv
|
|
|
|
// issue 3244
|
2018-12-10 14:46:01 +00:00
|
|
|
vec![
|
|
|
|
1
|
|
|
|
/ 2,
|
|
|
|
];
|
2018-11-04 08:02:49 +00:00
|
|
|
// issue 3396
|
2018-12-10 14:46:01 +00:00
|
|
|
vec![
|
|
|
|
true
|
|
|
|
| false,
|
|
|
|
];
|
2020-01-23 21:27:01 +00:00
|
|
|
|
|
|
|
// don't lint if the indentation suggests not to
|
|
|
|
let _ = &[
|
2020-12-20 16:19:49 +00:00
|
|
|
1 + 2, 3
|
2020-01-23 21:27:01 +00:00
|
|
|
- 4, 5
|
|
|
|
];
|
2020-08-02 15:20:00 +00:00
|
|
|
// lint if it doesn't
|
2020-01-23 21:27:01 +00:00
|
|
|
let _ = &[
|
|
|
|
-1
|
2023-08-24 19:32:12 +00:00
|
|
|
//~^ ERROR: possibly missing a comma here
|
|
|
|
//~| NOTE: to remove this lint, add a comma or write the expr in a single line
|
2020-01-23 21:27:01 +00:00
|
|
|
-4,
|
|
|
|
];
|
2016-02-27 16:57:36 +00:00
|
|
|
}
|