rust-lang/rust-clippy
GitHub で見るlint variable assignments that could be part of a method/field chain
Open
#2,035 opened on 2017年9月9日
A-lintL-unnecessaryT-middlegood first issue
説明
let x = foo.bar;
let y = x.met();
Should be
let y = foo.bar.met();
If x is not used anywhere else