lint: don't consider sizedness in upcastable lint

Adding a sizedness supertrait shouldn't require multiple vtables so
shouldn't be linted against.
This commit is contained in:
David Wood
2025-04-09 16:49:28 +00:00
parent 884d0e031a
commit f0b84b8dcf
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,8 @@ impl<'tcx> LateLintPass<'tcx> for MultipleSupertraitUpcastable {
.tcx
.explicit_super_predicates_of(def_id)
.iter_identity_copied()
.filter_map(|(pred, _)| pred.as_trait_clause());
.filter_map(|(pred, _)| pred.as_trait_clause())
.filter(|pred| !cx.tcx.is_lang_item(pred.def_id(), hir::LangItem::MetaSized));
if direct_super_traits_iter.count() > 1 {
cx.emit_span_lint(
MULTIPLE_SUPERTRAIT_UPCASTABLE,