blob: 2842ac50dc1e8db54d87dd1128ed4025e706b8f4 [file] [log] [blame]
pub trait Whatever {
type Foo;
fn method() {}
}
pub struct Struct;
impl Whatever for Struct {
type Foo = u8;
}
impl http::HttpTrait for Struct {}
mod traits {
pub trait TraitToReexport {
fn method() {}
}
}
#[doc(inline)]
pub use traits::TraitToReexport;