2021-11-26 15:03:16 -08:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2020-08-06 18:33:29 -04:00
|
|
|
|
|
|
|
/// Link to [S::assoc_fn()]
|
2020-08-02 22:37:21 -04:00
|
|
|
/// Link to [Default::default()]
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has trait_item/struct.S.html '//*[@href="struct.S.html#method.assoc_fn"]' 'S::assoc_fn()'
|
|
|
|
//@ has - '//*[@href="{{channel}}/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() {}
|
|
|
|
}
|