blob: 6fbc412001f5bb0ecb03047c4da8613aa6388768 [file] [edit]
#![crate_type = "lib"]
use super::A; //~ ERROR too many leading `super` keywords
mod b {
pub trait A {}
pub trait B {}
}
/// [`A`]
pub use b::*;