We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6561b71 commit 07fde07Copy full SHA for 07fde07
src/tools/rust-analyzer/crates/ide/src/goto_definition.rs
@@ -2289,4 +2289,28 @@ macro_rules! baz {
2289
"#,
2290
);
2291
}
2292
+
2293
+ #[test]
2294
+ fn goto_shadowed_preludes_in_block_module() {
2295
+ check(
2296
+ r#"
2297
+//- /main.rs crate:main edition:2021 deps:core
2298
+pub struct S;
2299
+ //^
2300
2301
+fn main() {
2302
+ fn f() -> S$0 {
2303
+ fn inner() {} // forces a block def map
2304
+ return S;
2305
+ }
2306
+}
2307
+//- /core.rs crate:core
2308
+pub mod prelude {
2309
+ pub mod rust_2021 {
2310
+ pub enum S;
2311
2312
2313
+ "#,
2314
+ );
2315
2316
0 commit comments