summary refs log tree commit diff
path: root/src/test/rustdoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-10-18 09:52:13 +0000
committerbors <bors@rust-lang.org>2021-10-18 09:52:13 +0000
commit09c42c45858d5f3aedfa670698275303a3d19afa (patch)
tree079a1e62911df8b2cbdb36319a133b41ae8094d0 /src/test/rustdoc
parent7eda9439636b4b56c74349b7309aff8109702e86 (diff)
parent7b9189aef301bd0e6cb2ec50835d3ce15eee051f (diff)
downloadrust-1.56.0.tar.gz
rust-1.56.0.zip
Auto merge of #90004 - pietroalbini:stable-next, r=pietroalbini 1.56.0
Rust 1.56.0 stable release

This PR bumps 1.56.0 to the stable channel. This also includes a backport for:

* Latest changes to the release notes
* #89867

r? `@ghost`
cc `@rust-lang/release`
Diffstat (limited to 'src/test/rustdoc')
-rw-r--r--src/test/rustdoc/issue-89852.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/rustdoc/issue-89852.rs b/src/test/rustdoc/issue-89852.rs
new file mode 100644
index 00000000000..45544dbeea6
--- /dev/null
+++ b/src/test/rustdoc/issue-89852.rs
@@ -0,0 +1,14 @@
+// edition:2018
+
+#![no_core]
+#![feature(no_core)]
+
+// @matches 'issue_89852/sidebar-items.js' '"repro"'
+// @!matches 'issue_89852/sidebar-items.js' '"repro".*"repro"'
+
+#[macro_export]
+macro_rules! repro {
+    () => {};
+}
+
+pub use crate::repro as repro2;