rust/tests/rustdoc/duplicate_impls/impls.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
182 B
Rust
Raw Normal View History

pub struct Foo;
// just so that `Foo` doesn't show up on `Bar`s sidebar
pub mod bar {
pub trait Bar {}
}
impl Foo {
pub fn new() -> Foo { Foo }
}
impl bar::Bar for Foo {}