Sign in
fuchsia
/
third_party
/
rust
/
9ffe161ce8a016fa98b6a6d6b269691cb3a44c46
/
.
/
tests
/
rustdoc-ui
/
ice-unresolved-import-100241.rs
blob: eef4b8355bfd7fb3c93a82acecd273dcac894011 [
file
] [
log
] [
blame
]
//! 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
;