Skip to content

Commit fa64c27

Browse files
committed
Add test case for Self:: links
1 parent cc31b99 commit fa64c27

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#![crate_name = "foo"]
2+
// @has foo/enum.E1.html '//a/@href' '../foo/enum.E1.html#variant.A'
3+
4+
/// [Self::A::b]
5+
pub enum E1 {
6+
A { b: usize }
7+
}
8+
9+
// @has foo/enum.E2.html '//a/@href' '../foo/enum.E2.html#variant.A'
10+
11+
/// [Self::A::b]
12+
pub enum E2 {
13+
A { b: usize }
14+
}

0 commit comments

Comments
 (0)