auto merge of #18014 : hirschenberger/rust/issue-17999, r=alexcrichton

Fix issue #17999 (Unused variables inside `for` are not detected)
This commit is contained in:
bors 2014-10-14 15:22:28 +00:00
commit 1fd8e4cae0
2 changed files with 22 additions and 0 deletions

View File

@ -1471,6 +1471,8 @@ fn check_expr(this: &mut Liveness, expr: &Expr) {
this.pat_bindings(&**pat, |this, ln, var, sp, id| {
this.warn_about_unused(sp, id, ln, var);
});
visit::walk_expr(this, expr);
}
// no correctness conditions related to liveness

View File

@ -0,0 +1,20 @@
// Copyright 2014 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.
#![deny(unused_variable)]
fn main() {
for _ in range(1i, 101) {
let x = (); //~ ERROR: unused variable: `x`
match () {
a => {} //~ ERROR: unused variable: `a`
}
}
}