mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
11 lines
175 B
Rust
11 lines
175 B
Rust
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 {}
|