diff --git a/compiler/rustc_data_structures/src/tagged_ptr/impl_tag.rs b/compiler/rustc_data_structures/src/tagged_ptr/impl_tag.rs index cb7f7d318dc41..44c6833252830 100644 --- a/compiler/rustc_data_structures/src/tagged_ptr/impl_tag.rs +++ b/compiler/rustc_data_structures/src/tagged_ptr/impl_tag.rs @@ -128,8 +128,9 @@ macro_rules! impl_tag { _ => unsafe { debug_assert!( false, - "invalid tag: {tag}\ - (this is a bug in the caller of `from_usize`)" + "invalid tag: {}\ + (this is a bug in the caller of `from_usize`)", + tag ); std::hint::unreachable_unchecked() },