]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/trait-self-link.rs
Rollup merge of #107580 - lenko-d:default_value_for_a_lifetime_generic_parameter_prod...
[rust.git] / tests / rustdoc / trait-self-link.rs
1 // @has trait_self_link/trait.Foo.html //a/@href trait.Foo.html
2 pub trait Foo {}
3
4 pub struct Bar;
5
6 impl Foo for Bar {}