2022-10-15 13:37:31 -05:00
|
|
|
//! See [`S`].
|
|
|
|
|
|
|
|
// Check that this isn't an ICE
|
|
|
|
//@ should-fail
|
|
|
|
|
2024-07-12 19:36:21 -05:00
|
|
|
// https://github.com/rust-lang/rust/issues/100241
|
|
|
|
|
2022-10-15 13:37:31 -05:00
|
|
|
mod foo {
|
|
|
|
pub use inner::S;
|
|
|
|
//~^ ERROR unresolved imports `inner`, `foo::S`
|
|
|
|
}
|
|
|
|
|
|
|
|
use foo::*;
|
|
|
|
use foo::S;
|