]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/trait-self-link.rs
Merge commit '6ed6f1e6a1a8f414ba7e6d9b8222e7e5a1686e42' into clippyup
[rust.git] / src / test / rustdoc / trait-self-link.rs
1 // @has trait_self_link/trait.Foo.html //a/@href ../trait_self_link/trait.Foo.html
2 pub trait Foo {}
3
4 pub struct Bar;
5
6 impl Foo for Bar {}