2021-11-26 17:03:16 -06:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2020-12-02 09:07:29 -06:00
|
|
|
pub mod r#impl {
|
|
|
|
pub struct S;
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
/// See [Self::b].
|
|
|
|
// @has raw_ident_self/impl/struct.S.html
|
2021-03-17 13:41:01 -05:00
|
|
|
// @has - '//a[@href="struct.S.html#method.b"]' 'Self::b'
|
2020-12-02 09:07:29 -06:00
|
|
|
pub fn a() {}
|
|
|
|
|
|
|
|
pub fn b() {}
|
|
|
|
}
|
|
|
|
}
|