Closed
Description
Given:
// foo.rs
pub struct Items<'a, T: 'a>;
// bar.rs
extern crate foo;
pub use foo::Items;
Documentation for bar.rs
shows struct Items<'a, T>
, missing the lifetime bound. This is still the case on my branch in #17798
Given:
// foo.rs
pub struct Items<'a, T: 'a>;
// bar.rs
extern crate foo;
pub use foo::Items;
Documentation for bar.rs
shows struct Items<'a, T>
, missing the lifetime bound. This is still the case on my branch in #17798