rust/tests/rustdoc/intra-doc-crate/auxiliary/self.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
146 B
Rust
Raw Normal View History

2020-11-29 12:49:44 -06:00
#![crate_name = "cross_crate_self"]
/// Link to [Self]
/// Link to [crate]
2020-11-29 12:49:44 -06:00
pub struct S;
impl S {
/// Link to [Self::f]
pub fn f() {}
}