File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -810,7 +810,9 @@ rustc_queries! {
810
810
query check_trait_item_well_formed( key: LocalDefId ) -> ( ) {
811
811
desc { |tcx| "processing `{}`" , tcx. def_path_str( key. to_def_id( ) ) }
812
812
}
813
- query check_impl_item_well_formed( _: DefId ) -> ( ) { }
813
+ query check_impl_item_well_formed( key: LocalDefId ) -> ( ) {
814
+ desc { |tcx| "processing `{}`" , tcx. def_path_str( key. to_def_id( ) ) }
815
+ }
814
816
}
815
817
816
818
Linking {
Original file line number Diff line number Diff line change @@ -762,8 +762,8 @@ fn check_trait_item_well_formed(tcx: TyCtxt<'_>, def_id: LocalDefId) {
762
762
wfcheck:: check_trait_item ( tcx, def_id) ;
763
763
}
764
764
765
- fn check_impl_item_well_formed ( tcx : TyCtxt < ' _ > , def_id : DefId ) {
766
- wfcheck:: check_impl_item ( tcx, def_id. expect_local ( ) ) ;
765
+ fn check_impl_item_well_formed ( tcx : TyCtxt < ' _ > , def_id : LocalDefId ) {
766
+ wfcheck:: check_impl_item ( tcx, def_id) ;
767
767
}
768
768
769
769
pub fn provide ( providers : & mut Providers < ' _ > ) {
You can’t perform that action at this time.
0 commit comments