2013-04-12 00:09:54 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// Exercise the unused_mut attribute in some positive and negative cases
|
|
|
|
|
2014-03-21 20:05:05 -05:00
|
|
|
#![allow(dead_assignment)]
|
|
|
|
#![allow(unused_variable)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
#![deny(unused_mut)]
|
2013-04-12 00:09:54 -05:00
|
|
|
|
2014-03-05 17:28:08 -06:00
|
|
|
|
2013-04-12 00:09:54 -05:00
|
|
|
fn main() {
|
|
|
|
// negative cases
|
2014-06-27 14:30:25 -05:00
|
|
|
let mut a = 3i; //~ ERROR: variable does not need to be mutable
|
|
|
|
let mut a = 2i; //~ ERROR: variable does not need to be mutable
|
|
|
|
let mut b = 3i; //~ ERROR: variable does not need to be mutable
|
|
|
|
let mut a = vec!(3i); //~ ERROR: variable does not need to be mutable
|
|
|
|
let (mut a, b) = (1i, 2i); //~ ERROR: variable does not need to be mutable
|
2013-10-22 22:51:45 -05:00
|
|
|
|
2014-06-27 14:30:25 -05:00
|
|
|
match 30i {
|
2013-10-22 22:51:45 -05:00
|
|
|
mut x => {} //~ ERROR: variable does not need to be mutable
|
|
|
|
}
|
2014-06-27 14:30:25 -05:00
|
|
|
match (30i, 2i) {
|
2014-05-08 14:48:45 -05:00
|
|
|
(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
|
|
|
|
2014-06-27 14:30:25 -05:00
|
|
|
let x = |mut y: int| 10i; //~ ERROR: variable does not need to be mutable
|
2013-10-22 22:51:45 -05:00
|
|
|
fn what(mut foo: int) {} //~ ERROR: variable does not need to be mutable
|
2013-04-12 00:09:54 -05:00
|
|
|
|
|
|
|
// positive cases
|
2014-06-27 14:30:25 -05:00
|
|
|
let mut a = 2i;
|
|
|
|
a = 3i;
|
2014-03-05 16:02:44 -06:00
|
|
|
let mut a = Vec::new();
|
2014-06-27 14:30:25 -05:00
|
|
|
a.push(3i);
|
2014-03-05 16:02:44 -06:00
|
|
|
let mut a = Vec::new();
|
2013-11-21 19:23:21 -06:00
|
|
|
callback(|| {
|
2014-06-27 14:30:25 -05:00
|
|
|
a.push(3i);
|
2013-11-21 19:23:21 -06:00
|
|
|
});
|
2014-06-27 14:30:25 -05:00
|
|
|
let (mut a, b) = (1i, 2i);
|
2013-10-22 22:51:45 -05:00
|
|
|
a = 34;
|
|
|
|
|
2014-06-27 14:30:25 -05:00
|
|
|
match 30i {
|
2013-10-22 22:51:45 -05:00
|
|
|
mut x => {
|
2014-06-27 14:30:25 -05:00
|
|
|
x = 21i;
|
2013-10-22 22:51:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-27 14:30:25 -05:00
|
|
|
match (30i, 2i) {
|
2014-05-08 14:48:45 -05:00
|
|
|
(mut x, 1) |
|
|
|
|
(mut x, 2) |
|
|
|
|
(mut x, 3) => {
|
|
|
|
x = 21
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
2014-06-27 14:30:25 -05:00
|
|
|
let x = |mut y: int| y = 32i;
|
|
|
|
fn nothing(mut foo: int) { foo = 37i; }
|
2013-11-15 07:39:48 -06:00
|
|
|
|
|
|
|
// leading underscore should avoid the warning, just like the
|
|
|
|
// unused variable lint.
|
2014-06-27 14:30:25 -05:00
|
|
|
let mut _allowed = 1i;
|
2013-04-12 00:09:54 -05:00
|
|
|
}
|
|
|
|
|
2013-11-19 18:34:19 -06:00
|
|
|
fn callback(f: ||) {}
|
2013-04-12 00:09:54 -05:00
|
|
|
|
|
|
|
// make sure the lint attribute can be turned off
|
|
|
|
#[allow(unused_mut)]
|
|
|
|
fn foo(mut a: int) {
|
2014-06-27 14:30:25 -05:00
|
|
|
let mut a = 3i;
|
|
|
|
let mut b = vec!(2i);
|
2013-04-12 00:09:54 -05:00
|
|
|
}
|