]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/issue-100241.rs
Rollup merge of #105459 - jyn514:proc-macro-default, r=Mark-Simulacrum
[rust.git] / src / test / 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;