rust/tests/rustdoc-ui/ice-unresolved-import-100241.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
228 B
Rust
Raw Normal View History

//! See [`S`].
// Check that this isn't an ICE
//@ should-fail
2024-07-13 00:36:21 +00:00
// 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;