rust/src/test/rustdoc/trait-self-link.rs
2018-12-25 21:08:33 -07:00

7 lines
139 B
Rust

// @!has trait_self_link/trait.Foo.html //a/@href ../trait_self_link/trait.Foo.html
pub trait Foo {}
pub struct Bar;
impl Foo for Bar {}