Make impl_trait_ref into a query also returning more information about the impl
This commit is contained in:
parent
de4d615e6b
commit
916951efcc
9 changed files with 48 additions and 40 deletions
|
@ -177,8 +177,9 @@ impl EraseType for Option<mir::DestructuredConstant<'_>> {
|
|||
type Result = [u8; size_of::<Option<mir::DestructuredConstant<'static>>>()];
|
||||
}
|
||||
|
||||
impl EraseType for Option<ty::EarlyBinder<ty::TraitRef<'_>>> {
|
||||
type Result = [u8; size_of::<Option<ty::EarlyBinder<ty::TraitRef<'static>>>>()];
|
||||
impl EraseType for Option<(ty::EarlyBinder<ty::TraitRef<'_>>, ty::ImplPolarity)> {
|
||||
type Result =
|
||||
[u8; size_of::<Option<(ty::EarlyBinder<ty::TraitRef<'static>>, ty::ImplPolarity)>>()];
|
||||
}
|
||||
|
||||
impl EraseType for Option<ty::EarlyBinder<Ty<'_>>> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue