rust/src/test/rustdoc/intra-doc/trait-item.rs

12 lines
369 B
Rust
Raw Normal View History

2020-08-06 18:33:29 -04:00
#![deny(broken_intra_doc_links)]
/// Link to [S::assoc_fn()]
/// Link to [Default::default()]
// @has trait_item/struct.S.html '//*[@href="struct.S.html#method.assoc_fn"]' 'S::assoc_fn()'
2020-08-06 18:50:23 -04:00
// @has - '//*[@href="https://doc.rust-lang.org/nightly/core/default/trait.Default.html#tymethod.default"]' 'Default::default()'
2020-08-06 18:33:29 -04:00
pub struct S;
impl S {
pub fn assoc_fn() {}
}