rust-lang/rust-clippy
View on GitHublint variable assignments that could be part of a method/field chain
Open
#2035 opened on Sep 9, 2017
A-lintL-unnecessaryT-middlegood first issue
Description
let x = foo.bar;
let y = x.met();
Should be
let y = foo.bar.met();
If x is not used anywhere else