Files
rust/tests/rustdoc/issue-100241.rs
2024-02-22 16:04:04 +00:00

13 lines
176 B
Rust

//! 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;