Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
rustdoc-ui
/
ice-unresolved-import-100241.rs
blob: eef4b8355bfd7fb3c93a82acecd273dcac894011 [
file
] [
log
] [
blame
] [
edit
]
//! See [`S`].
// Check that this isn't an ICE
//@ should-fail
// https://github.com/rust-lang/rust/issues/100241
mod
foo
{
pub
use
inner
::
S
;
//~^ ERROR unresolved imports `inner`, `foo::S`
}
use
foo
::*;
use
foo
::
S
;