about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2023-02-22 10:35:10 +0100
committerGitHub <noreply@github.com>2023-02-22 10:35:10 +0100
commit8d33b780ff125e7386b77c08be26dcd07bce7816 (patch)
treeed34e8a5e35a618380cf97e8391f87acdafb8276 /tests
parent8fd47a614b34faca40d2b5b70165831e2a8b8593 (diff)
parentfec6ad60589c4c4bd2535190bf756345a9bb3bbc (diff)
downloadrust-8d33b780ff125e7386b77c08be26dcd07bce7816.tar.gz
rust-8d33b780ff125e7386b77c08be26dcd07bce7816.zip
Rollup merge of #108310 - GuillaumeGomez:fix-reexports-duplicated-attributes, r=notriddle
rustdoc: Fix duplicated attributes for first reexport

Fixes #108281.

r? ``@notriddle``
Diffstat (limited to 'tests')
-rw-r--r--tests/rustdoc/issue-108281.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/rustdoc/issue-108281.rs b/tests/rustdoc/issue-108281.rs
new file mode 100644
index 00000000000..8e1b6ba88a6
--- /dev/null
+++ b/tests/rustdoc/issue-108281.rs
@@ -0,0 +1,25 @@
+// Regression test for <https://github.com/rust-lang/rust/issues/108281>.
+// It ensures that the attributes on the first reexport are not duplicated.
+
+#![crate_name = "foo"]
+
+// @has 'foo/index.html'
+
+#[doc(hidden)]
+pub fn bar() {}
+mod sub {
+    pub fn public() {}
+}
+
+// @matches - '//*[@class="desc docblock-short"]' '^Displayed$'
+/// Displayed
+#[doc(inline)]
+pub use crate::bar as Bar;
+// @matches - '//*[@class="desc docblock-short"]' '^Hello\sDisplayed$'
+#[doc(inline)]
+/// Hello
+pub use crate::Bar as Bar2;
+
+// @matches - '//*[@class="desc docblock-short"]' '^Public$'
+/// Public
+pub use crate::sub::public as Public;