]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-100241.rs
Rollup merge of #105172 - alexs-sh:issue-98861-fix-next, r=scottmcm
[rust.git] / tests / rustdoc / issue-100241.rs
1 //! See [`S`].
2
3 // Check that this isn't an ICE
4 // should-fail
5
6 mod foo {
7     pub use inner::S;
8     //~^ ERROR unresolved imports `inner`, `foo::S`
9 }
10
11 use foo::*;
12 use foo::S;