]> git.proxmox.com Git - rustc.git/blob - src/test/rustdoc/intra-doc-crate/auxiliary/self.rs
Update unsuspicious file list
[rustc.git] / src / test / rustdoc / intra-doc-crate / auxiliary / self.rs
1 #![crate_name = "cross_crate_self"]
2
3 /// Link to [Self]
4 /// Link to [crate]
5 pub struct S;
6
7 impl S {
8 /// Link to [Self::f]
9 pub fn f() {}
10 }