Unused variable is left

This commit is contained in:
Hidehito Yabuuchi 2018-03-05 17:40:42 +09:00
parent cdb60c6547
commit e13dcd26e3

View file

@ -36,7 +36,7 @@ impl LintPass for RedundantFieldNames {
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for RedundantFieldNames { impl<'a, 'tcx> LateLintPass<'a, 'tcx> for RedundantFieldNames {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) { fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
if let ExprStruct(ref path, ref fields, _) = expr.node { if let ExprStruct(_, ref fields, _) = expr.node {
for field in fields { for field in fields {
let name = field.name.node; let name = field.name.node;