We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e05ee65 commit 6307ecbCopy full SHA for 6307ecb
src/test/rustdoc/issue-89852.rs
@@ -0,0 +1,14 @@
1
+// edition:2018
2
+
3
+#![no_core]
4
+#![feature(no_core)]
5
6
+// @count issue_89852/index.html '//*[@class="macro"]' 2
7
+// @has - '//*[@class="macro"]/@href' 'macro.repro.html'
8
+#[macro_export]
9
+macro_rules! repro {
10
+ () => {};
11
+}
12
13
+// @!has issue_89852/macro.repro.html '//*[@class="macro"]/@content' 'repro2'
14
+pub use crate::repro as repro2;
0 commit comments