blob: 85fff361e31d8680c11dcd270e5566b47e5e39f7 [file]
mod a {
pub use crate::s::Trait as s;
//~^ ERROR cannot determine resolution for the import
//~| ERROR cannot determine resolution for the import
//~| ERROR unresolved imports `crate::s::Trait`, `a::s`
}
mod b {
pub mod s {
pub trait Trait {}
}
}
use a::s;
use b::*;
fn main() {}