about summary refs log tree commit diff
path: root/compiler/rustc_expand/src/base.rs
diff options
context:
space:
mode:
authorLorrensP-2158466 <lorrens.pantelis@student.uhasselt.be>2025-07-12 15:01:39 +0200
committerLorrensP-2158466 <lorrens.pantelis@student.uhasselt.be>2025-07-27 12:17:23 +0200
commit451a93e2b8d12268687159265b8564d50e6063c0 (patch)
tree324a3e79c9c6e2b9db44c4feed2997e5ff15de9a /compiler/rustc_expand/src/base.rs
parent86ef32029427cfc4161a3fd7a51992302f7c5552 (diff)
downloadrust-451a93e2b8d12268687159265b8564d50e6063c0.tar.gz
rust-451a93e2b8d12268687159265b8564d50e6063c0.zip
split up define into define_extern and define_local
Diffstat (limited to 'compiler/rustc_expand/src/base.rs')
-rw-r--r--compiler/rustc_expand/src/base.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_expand/src/base.rs b/compiler/rustc_expand/src/base.rs
index 44a99aa6ea0..5a7883ccba6 100644
--- a/compiler/rustc_expand/src/base.rs
+++ b/compiler/rustc_expand/src/base.rs
@@ -1141,7 +1141,7 @@ pub trait ResolverExpand {
 
     /// Names of specific methods to which glob delegation expands.
     fn glob_delegation_suffixes(
-        &mut self,
+        &self,
         trait_def_id: DefId,
         impl_def_id: LocalDefId,
     ) -> Result<Vec<(Ident, Option<Ident>)>, Indeterminate>;