Skip to content

Commit 07fde07

Browse files
committed
test: add regression test for prelude shadowing in block modules
1 parent 6561b71 commit 07fde07

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/tools/rust-analyzer/crates/ide/src/goto_definition.rs

+24
Original file line numberDiff line numberDiff line change
@@ -2289,4 +2289,28 @@ macro_rules! baz {
22892289
"#,
22902290
);
22912291
}
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+
}
22922316
}

0 commit comments

Comments
 (0)