blob: 0c10259bcd71669397035df08851ddcb39add3a7 [file] [log] [blame] [edit]
#![crate_type = "lib"]
pub mod f {}
pub use unresolved::f;
//~^ ERROR unresolved import `unresolved`
/// [g]
pub use f as g;
fn main() {}