Rename impl_of_method -> impl_of_assoc

This commit is contained in:
Cameron Steffen
2025-07-24 19:09:05 -05:00
parent 172af038a7
commit b43164cef6
41 changed files with 45 additions and 45 deletions

View File

@@ -368,7 +368,7 @@ impl<'tcx> MarkSymbolVisitor<'tcx> {
/// will be ignored for the purposes of dead code analysis (see PR #85200
/// for discussion).
fn should_ignore_item(&mut self, def_id: DefId) -> bool {
if let Some(impl_of) = self.tcx.impl_of_method(def_id) {
if let Some(impl_of) = self.tcx.impl_of_assoc(def_id) {
if !self.tcx.is_automatically_derived(impl_of) {
return false;
}