rust-clippy/tests/ui/mut_mut.rs

83 lines
1.4 KiB
Rust
Raw Normal View History

2023-04-20 15:19:36 +00:00
//@aux-build:proc_macros.rs:proc-macro
2018-07-28 15:34:52 +00:00
#![warn(clippy::mut_mut)]
#![allow(unused)]
#![allow(
clippy::no_effect,
clippy::uninlined_format_args,
clippy::unnecessary_operation,
clippy::needless_pass_by_ref_mut
)]
extern crate proc_macros;
use proc_macros::{external, inline_macros};
2018-12-09 22:26:16 +00:00
fn fun(x: &mut &mut u32) -> bool {
**x > 0
2015-05-18 07:02:24 +00:00
}
2018-12-09 22:26:16 +00:00
fn less_fun(x: *mut *mut u32) {
let y = x;
}
macro_rules! mut_ptr {
2018-12-09 22:26:16 +00:00
($p:expr) => {
&mut $p
};
}
#[allow(unused_mut, unused_variables)]
#[inline_macros]
2015-05-18 07:02:24 +00:00
fn main() {
2017-02-08 13:58:07 +00:00
let mut x = &mut &mut 1u32;
{
2017-02-08 13:58:07 +00:00
let mut y = &mut x;
}
2016-06-21 20:54:22 +00:00
if fun(x) {
2018-12-09 22:26:16 +00:00
let y: &mut &mut u32 = &mut &mut 2;
2016-06-21 20:54:22 +00:00
**y + **x;
}
if fun(x) {
2018-12-09 22:26:16 +00:00
let y: &mut &mut &mut u32 = &mut &mut &mut 2;
***y + **x;
}
let mut z = inline!(&mut $(&mut 3u32));
2015-05-18 07:02:24 +00:00
}
2016-06-21 20:54:22 +00:00
fn issue939() {
let array = [5, 6, 7, 8, 9];
let mut args = array.iter().skip(2);
for &arg in &mut args {
println!("{}", arg);
}
let args = &mut args;
for arg in args {
println!(":{}", arg);
}
}
fn issue6922() {
// do not lint from an external macro
external!(let mut_mut_ty: &mut &mut u32 = &mut &mut 1u32;);
}
mod issue9035 {
use std::fmt::Display;
struct Foo<'a> {
inner: &'a mut dyn Display,
}
impl Foo<'_> {
fn foo(&mut self) {
let hlp = &mut self.inner;
bar(hlp);
}
}
fn bar(_: &mut impl Display) {}
}