summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/issue-100241.rs
blob: 9e9cba13a22f3fdb005cd21959e7d3ddfd58f658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! See [`S`].

// Check that this isn't an ICE
// should-fail

mod foo {
    pub use inner::S;
    //~^ ERROR unresolved imports `inner`, `foo::S`
}

use foo::*;
use foo::S;