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