Skip to content

Commit 83ea345

Browse files
Remove define_debug_via_print for ExistentialProjection
1 parent c580c49 commit 83ea345

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: compiler/rustc_type_ir/src/ir_print.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ define_display_via_print!(
6060
PatternKind,
6161
);
6262

63-
define_debug_via_print!(TraitRef, ExistentialTraitRef, ExistentialProjection, PatternKind);
63+
define_debug_via_print!(TraitRef, ExistentialTraitRef, PatternKind);
6464

6565
impl<I: Interner, T> fmt::Display for OutlivesPredicate<I, T>
6666
where

Diff for: compiler/rustc_type_ir/src/predicate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ impl<I: Interner> ty::Binder<I, ExistentialTraitRef<I>> {
374374
}
375375

376376
/// A `ProjectionPredicate` for an `ExistentialTraitRef`.
377-
#[derive_where(Clone, Copy, Hash, PartialEq, Eq; I: Interner)]
377+
#[derive_where(Clone, Copy, Hash, PartialEq, Eq, Debug; I: Interner)]
378378
#[derive(TypeVisitable_Generic, TypeFoldable_Generic, Lift_Generic)]
379379
#[cfg_attr(
380380
feature = "nightly",

0 commit comments

Comments
 (0)