rust/src/test/ui/lint/lint-unused-mut-variables.rs

141 lines
3.0 KiB
Rust
Raw Normal View History

// Exercise the unused_mut attribute in some positive and negative cases
2014-10-27 17:37:07 -05:00
#![allow(unused_assignments)]
#![allow(unused_variables)]
#![allow(dead_code)]
#![deny(unused_mut)]
fn main() {
// negative cases
let mut a = 3; //~ ERROR: variable does not need to be mutable
let mut a = 2; //~ ERROR: variable does not need to be mutable
let mut b = 3; //~ ERROR: variable does not need to be mutable
let mut a = vec![3]; //~ ERROR: variable does not need to be mutable
let (mut a, b) = (1, 2); //~ ERROR: variable does not need to be mutable
let mut a; //~ ERROR: variable does not need to be mutable
a = 3;
let mut b; //~ ERROR: variable does not need to be mutable
if true {
b = 3;
} else {
b = 4;
}
2013-10-22 22:51:45 -05:00
2015-01-31 10:23:42 -06:00
match 30 {
mut x => {} //~ ERROR: variable does not need to be mutable
2013-10-22 22:51:45 -05:00
}
2015-01-31 10:23:42 -06:00
match (30, 2) {
(mut x, 1) | //~ ERROR: variable does not need to be mutable
(mut x, 2) |
(mut x, 3) => {
}
_ => {}
}
2013-10-22 22:51:45 -05:00
let x = |mut y: isize| 10; //~ ERROR: variable does not need to be mutable
fn what(mut foo: isize) {} //~ ERROR: variable does not need to be mutable
let mut a = &mut 5; //~ ERROR: variable does not need to be mutable
2017-08-01 16:06:26 -05:00
*a = 4;
let mut a = 5;
let mut b = (&mut a,); //~ ERROR: variable does not need to be mutable
*b.0 = 4;
let mut x = &mut 1; //~ ERROR: variable does not need to be mutable
2017-08-01 16:06:26 -05:00
2017-08-06 12:25:31 -05:00
let mut f = || {
*x += 1;
};
f();
2017-08-01 16:06:26 -05:00
fn mut_ref_arg(mut arg : &mut [u8]) -> &mut [u8] {
&mut arg[..] //~^ ERROR: variable does not need to be mutable
2017-08-01 16:06:26 -05:00
}
let mut v : &mut Vec<()> = &mut vec![]; //~ ERROR: variable does not need to be mutable
2017-08-01 16:06:26 -05:00
v.push(());
// positive cases
2015-01-31 10:23:42 -06:00
let mut a = 2;
a = 3;
let mut a = Vec::new();
2015-01-31 10:23:42 -06:00
a.push(3);
let mut a = Vec::new();
callback(|| {
2015-01-31 10:23:42 -06:00
a.push(3);
});
let mut a = Vec::new();
callback(|| {
callback(|| {
a.push(3);
});
});
2015-01-31 10:23:42 -06:00
let (mut a, b) = (1, 2);
2013-10-22 22:51:45 -05:00
a = 34;
2015-01-31 10:23:42 -06:00
match 30 {
2013-10-22 22:51:45 -05:00
mut x => {
2015-01-31 10:23:42 -06:00
x = 21;
2013-10-22 22:51:45 -05:00
}
}
2015-01-31 10:23:42 -06:00
match (30, 2) {
(mut x, 1) |
(mut x, 2) |
(mut x, 3) => {
x = 21
}
_ => {}
}
// Attribute should be respected on match arms
match 0 {
#[allow(unused_mut)]
mut x => {
let mut y = 1;
},
}
let x = |mut y: isize| y = 32;
2015-01-31 10:23:42 -06:00
fn nothing(mut foo: isize) { foo = 37; }
// leading underscore should avoid the warning, just like the
// unused variable lint.
2015-01-31 10:23:42 -06:00
let mut _allowed = 1;
}
2015-01-03 09:45:00 -06:00
fn callback<F>(f: F) where F: FnOnce() {}
// make sure the lint attribute can be turned off
#[allow(unused_mut)]
fn foo(mut a: isize) {
2015-01-31 10:23:42 -06:00
let mut a = 3;
let mut b = vec![2];
}
// make sure the lint attribute can be turned off on let statements
#[deny(unused_mut)]
fn bar() {
#[allow(unused_mut)]
let mut a = 3;
let mut b = vec![2]; //~ ERROR: variable does not need to be mutable
}