rust-clippy/tests/compile-fail/mut_mut.rs

65 lines
1.6 KiB
Rust
Raw Normal View History

2015-05-18 07:02:24 +00:00
#![feature(plugin)]
#![plugin(clippy)]
#![allow(unused, no_effect, unnecessary_operation)]
2016-06-21 20:54:22 +00:00
#![deny(mut_mut)]
//#![plugin(regex_macros)]
//extern crate regex;
fn fun(x : &mut &mut u32) -> bool { //~ERROR generally you want to avoid `&mut &mut
**x > 0
2015-05-18 07:02:24 +00:00
}
fn less_fun(x : *mut *mut u32) {
let y = x;
}
macro_rules! mut_ptr {
($p:expr) => { &mut $p }
//~^ ERROR generally you want to avoid `&mut &mut
}
#[allow(unused_mut, unused_variables)]
2015-05-18 07:02:24 +00:00
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
}
2016-06-21 20:54:22 +00:00
if fun(x) {
let y : &mut &mut u32 = &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
**y + **x;
}
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
2016-06-21 20:54:22 +00:00
//~| ERROR generally you want to avoid `&mut &mut
//~| ERROR generally you want to avoid `&mut &mut
***y + **x;
}
2016-06-05 16:07:12 +00:00
let mut z = mut_ptr!(&mut 3u32);
//~^ NOTE in this expansion of mut_ptr!
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);
}
}