2021-11-26 17:03:16 -06:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2020-08-06 17:33:29 -05:00
|
|
|
|
|
|
|
/// Link to [S::assoc_fn()]
|
2020-08-02 21:37:21 -05:00
|
|
|
/// Link to [Default::default()]
|
2024-06-21 07:03:08 -05: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 17:33:29 -05:00
|
|
|
pub struct S;
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
pub fn assoc_fn() {}
|
|
|
|
}
|