blob: e4c613dd2791e1fb0a917b5fb5b59f02a5657bae [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;