提交 54792feb 编写于 作者: S Seo Sanghyeon

Do not traverse RHS of assignment twice for unused variables lint

walk_expr includes call to visit_expr for subexpressions.
上级 f07f4ef7
...@@ -1399,9 +1399,8 @@ fn check_arm(this: &mut Liveness, arm: &hir::Arm) { ...@@ -1399,9 +1399,8 @@ fn check_arm(this: &mut Liveness, arm: &hir::Arm) {
fn check_expr(this: &mut Liveness, expr: &Expr) { fn check_expr(this: &mut Liveness, expr: &Expr) {
match expr.node { match expr.node {
hir::ExprAssign(ref l, ref r) => { hir::ExprAssign(ref l, _) => {
this.check_lvalue(&**l); this.check_lvalue(&**l);
this.visit_expr(&**r);
visit::walk_expr(this, expr); visit::walk_expr(this, expr);
} }
......
// Copyright 2015 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_variables)]
fn f(_: i32) {}
fn main() {
let mut v = 0;
f(v);
v = match 0 { a => 0 }; //~ ERROR: unused variable: `a`
f(v);
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册