From af2f538390f2fd2395edc23e98cbaa55d8177f9e Mon Sep 17 00:00:00 2001 From: Falco Hirschenberger Date: Mon, 13 Oct 2014 23:15:07 +0200 Subject: [PATCH] Fix issue #17999 (Unused variables inside `for` are not detected) --- src/librustc/middle/liveness.rs | 2 ++ src/test/compile-fail/issue-17999.rs | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 src/test/compile-fail/issue-17999.rs diff --git a/src/librustc/middle/liveness.rs b/src/librustc/middle/liveness.rs index 2176cd56589..dea17b2ff02 100644 --- a/src/librustc/middle/liveness.rs +++ b/src/librustc/middle/liveness.rs @@ -1464,6 +1464,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 diff --git a/src/test/compile-fail/issue-17999.rs b/src/test/compile-fail/issue-17999.rs new file mode 100644 index 00000000000..4d4b40ed12d --- /dev/null +++ b/src/test/compile-fail/issue-17999.rs @@ -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 or the MIT license +// , 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` + } + } +}