Skip to content

Commit 5044e37

Browse files
authored
Rollup merge of rust-lang#93746 - cjgillot:nodefii, r=nikomatsakis
Remove defaultness from ImplItem. This information is not really used anywhere, except HIR pretty-printing. This makes ImplItem and TraitItem more similar.
2 parents 6987217 + 3edfd5e commit 5044e37

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

clippy_lints/src/utils/inspector.rs

-3
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,6 @@ impl<'tcx> LateLintPass<'tcx> for DeepCodeInspector {
5454
),
5555
hir::VisibilityKind::Inherited => println!("visibility inherited from outer item"),
5656
}
57-
if item.defaultness.is_default() {
58-
println!("default");
59-
}
6057
match item.kind {
6158
hir::ImplItemKind::Const(_, body_id) => {
6259
println!("associated constant");

0 commit comments

Comments
 (0)