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 d1ad40e commit c70250dCopy full SHA for c70250d
src/test/rustdoc/auxiliary/macro-2-reexport.rs
@@ -0,0 +1,6 @@
1
+#![crate_name = "macro_2_reexport"]
2
+#![feature(decl_macro)]
3
+
4
+pub macro addr_of($place:expr) {
5
+ &raw const $place
6
+}
src/test/rustdoc/macro-2-reexport.rs
@@ -0,0 +1,8 @@
+// aux-build: macro-2-reexport.rs
+#![crate_name = "foo"]
+extern crate macro_2_reexport;
7
+// @has 'foo/macro.addr_of.html' '//*[@class="docblock type-decl"]' 'macro addr_of($place : expr) {'
8
+pub use macro_2_reexport::addr_of;
0 commit comments