1
Fork 0

Make atomic structural impls generic over Interner

This commit is contained in:
Alan Egerton 2023-02-10 15:51:28 +00:00
parent 9783fcc13b
commit 9fa6bb2aa0
No known key found for this signature in database
GPG key ID: 7D4C2F6C22122532
3 changed files with 82 additions and 54 deletions

View file

@ -705,7 +705,11 @@ pub enum BindingForm<'tcx> {
RefForGuard,
}
TrivialTypeTraversalAndLiftImpls! { BindingForm<'tcx>, }
TrivialTypeTraversalAndLiftImpls! {
for<'tcx> {
BindingForm<'tcx>,
}
}
mod binding_form_impl {
use rustc_data_structures::stable_hasher::{HashStable, StableHasher};