Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
rustdoc
/
issue-100241.rs
blob: 9e9cba13a22f3fdb005cd21959e7d3ddfd58f658 [
file
] [
log
] [
blame
]
//! 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
;