summary refs log tree commit diff
path: root/src/test/rustdoc/intra-link-self-cache.rs
blob: add1530a5a675b7c71a7430c67159691f34115a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![crate_name = "foo"]
// @has foo/enum.E1.html '//a/@href' '../foo/enum.E1.html#variant.A'

/// [Self::A::b]
pub enum E1 {
    A { b: usize }
}

// @has foo/enum.E2.html '//a/@href' '../foo/enum.E2.html#variant.A'

/// [Self::A::b]
pub enum E2 {
    A { b: usize }
}