DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / imports / issue-109343.rs
12345678910
#![crate_type = "lib"] pub mod f {} pub use unresolved::f; //~^ ERROR unresolved import `unresolved` /// [g] pub use f as g; fn main() {}