We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aef5765 commit f96a40fCopy full SHA for f96a40f
src/test/rustdoc-json/reexport/macro.rs
@@ -0,0 +1,17 @@
1
+// edition:2018
2
+
3
+#![no_core]
4
+#![feature(no_core)]
5
6
+// @count macro.json "$.index[*][?(@.name=='macro')].inner.items[*]" 2
7
8
+// @set repro_id = macro.json "$.index[*][?(@.name=='repro')].id"
9
+// @has - "$.index[*][?(@.name=='macro')].inner.items[*]" $repro_id
10
+#[macro_export]
11
+macro_rules! repro {
12
+ () => {};
13
+}
14
15
+// @set repro2_id = macro.json "$.index[*][?(@.inner.name=='repro2')].id"
16
+// @has - "$.index[*][?(@.name=='macro')].inner.items[*]" $repro2_id
17
+pub use crate::repro as repro2;
0 commit comments