diff --git a/src/librustc_resolve/lib.rs b/src/librustc_resolve/lib.rs index 8cfde39c82a..c42767f95e1 100644 --- a/src/librustc_resolve/lib.rs +++ b/src/librustc_resolve/lib.rs @@ -2688,6 +2688,7 @@ fn with_no_errors(&mut self, f: F) -> T // Calls `f` with a `Resolver` whose current lexical scope is `module`'s lexical scope, // i.e. the module's items and the prelude (unless the module is `#[no_implicit_prelude]`). + // FIXME #34673: This needs testing. pub fn with_module_lexical_scope(&mut self, module: Module<'a>, f: F) -> T where F: FnOnce(&mut Resolver<'a>) -> T, {