]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/lint-unused-mut-variables.rs
275b37d9b7e4986aeaca269173a91124f07ab6cf
[rust.git] / src / test / compile-fail / lint-unused-mut-variables.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Exercise the unused_mut attribute in some positive and negative cases
12
13 #[allow(dead_assignment)];
14 #[allow(unused_variable)];
15 #[allow(dead_code)];
16 #[allow(deprecated_owned_vector)];
17 #[deny(unused_mut)];
18
19 fn main() {
20     // negative cases
21     let mut a = 3; //~ ERROR: variable does not need to be mutable
22     let mut a = 2; //~ ERROR: variable does not need to be mutable
23     let mut b = 3; //~ ERROR: variable does not need to be mutable
24     let mut a = vec!(3); //~ ERROR: variable does not need to be mutable
25     let (mut a, b) = (1, 2); //~ ERROR: variable does not need to be mutable
26
27     match 30 {
28         mut x => {} //~ ERROR: variable does not need to be mutable
29     }
30
31     let x = |mut y: int| 10; //~ ERROR: variable does not need to be mutable
32     fn what(mut foo: int) {} //~ ERROR: variable does not need to be mutable
33
34     // positive cases
35     let mut a = 2;
36     a = 3;
37     let mut a = Vec::new();
38     a.push(3);
39     let mut a = Vec::new();
40     callback(|| {
41         a.push(3);
42     });
43     let (mut a, b) = (1, 2);
44     a = 34;
45
46     match 30 {
47         mut x => {
48             x = 21;
49         }
50     }
51
52     let x = |mut y: int| y = 32;
53     fn nothing(mut foo: int) { foo = 37; }
54
55     // leading underscore should avoid the warning, just like the
56     // unused variable lint.
57     let mut _allowed = 1;
58 }
59
60 fn callback(f: ||) {}
61
62 // make sure the lint attribute can be turned off
63 #[allow(unused_mut)]
64 fn foo(mut a: int) {
65     let mut a = 3;
66     let mut b = vec!(2);
67 }