mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
7aee04878f
(Did not touch strings.rs, which is fixed by @llogiq's PR)
34 lines
1,022 B
Rust
Executable file
34 lines
1,022 B
Rust
Executable file
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
//#![plugin(regex_macros)]
|
|
//extern crate regex;
|
|
|
|
#[deny(mut_mut)]
|
|
fn fun(x : &mut &mut u32) -> bool { //~ERROR generally you want to avoid `&mut &mut
|
|
**x > 0
|
|
}
|
|
|
|
macro_rules! mut_ptr {
|
|
($p:expr) => { &mut $p }
|
|
}
|
|
|
|
#[deny(mut_mut)]
|
|
#[allow(unused_mut, unused_variables)]
|
|
fn main() {
|
|
let mut x = &mut &mut 1u32; //~ERROR generally you want to avoid `&mut &mut
|
|
{
|
|
let mut y = &mut x; //~ERROR this expression mutably borrows a mutable reference
|
|
}
|
|
|
|
if fun(x) {
|
|
let y : &mut &mut &mut u32 = &mut &mut &mut 2;
|
|
//~^ ERROR generally you want to avoid `&mut &mut
|
|
//~^^ ERROR generally you want to avoid `&mut &mut
|
|
//~^^^ ERROR generally you want to avoid `&mut &mut
|
|
//~^^^^ ERROR generally you want to avoid `&mut &mut
|
|
***y + **x;
|
|
}
|
|
|
|
let mut z = mut_ptr!(&mut 3u32); //~ERROR generally you want to avoid `&mut &mut
|
|
}
|