rust-lang/rust-clippy
GitHub で見るimprove collapsible if in complex cases with same expressions
Open
#812 opened on 2016年3月30日
A-lintC-enhancementgood first issue
説明
if a {
if b {
f();
}
} else {
f();
}
could be
if !a || b {
f();
}