Rollup merge of #152813 - makai410:debug-impl, r=lqd

Skip the `use_existential_projection_new_instead` field in the `Debug` impl

Resolves: rust-lang/rust#152807 .

Simply slap a `#derive_where[skip(Debug)]` on that field.
This commit is contained in:
Jonathan Brouwer
2026-02-20 22:00:58 +01:00
committed by GitHub
+1
View File
@@ -420,6 +420,7 @@ pub struct ExistentialProjection<I: Interner> {
/// This field exists to prevent the creation of `ExistentialProjection`
/// without using [`ExistentialProjection::new_from_args`].
#[derive_where(skip(Debug))]
use_existential_projection_new_instead: (),
}