We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53447d8 commit fc97fbeCopy full SHA for fc97fbe
src/test/rustdoc/auxiliary/issue-86620-1.rs
@@ -0,0 +1,11 @@
1
+#![crate_name = "issue_86620_1"]
2
+
3
+pub trait VZip {
4
+ fn vzip() -> usize;
5
+}
6
7
+impl<T> VZip for T {
8
+ fn vzip() -> usize {
9
+ 0
10
+ }
11
src/test/rustdoc/issue-86620.rs
@@ -0,0 +1,8 @@
+// aux-build:issue-86620-1.rs
+extern crate issue_86620_1;
+use issue_86620_1::*;
+// @!has issue_86620/struct.S.html '//div[@id="method.vzip"]//a[@class="fnname"]/@href' #tymethod.vzip
+pub struct S;
0 commit comments