blob: 0213a53cab5d72bc15bac1bce4e9d31a9250b83b [file] [log] [blame]
pub trait Bar {}
#[doc(hidden)]
pub mod hidden {
pub struct Foo;
}
// @has issue_33069/trait.Bar.html
// @!has - '//code' 'impl Bar for Foo'
impl Bar for hidden::Foo {}