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()]
|
2021-03-17 11:41:01 -07:00
|
|
|
// @has trait_item/struct.S.html '//*[@href="struct.S.html#method.assoc_fn"]' 'S::assoc_fn()'
|
2021-05-04 23:36:33 -04:00
|
|
|
// @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() {}
|
|
|
|
|
}
|