We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdf6505 commit 2eaf9feCopy full SHA for 2eaf9fe
compiler/rustc_hir/src/hir.rs
@@ -445,6 +445,9 @@ pub enum GenericBound<'hir> {
445
Outlives(Lifetime),
446
}
447
448
+#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
449
+rustc_data_structures::static_assert_size!(GenericBound<'_>, 48);
450
+
451
impl GenericBound<'_> {
452
pub fn trait_ref(&self) -> Option<&TraitRef<'_>> {
453
match self {
0 commit comments