summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-json/reexport/same_type_reexported_more_than_once.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc-json/reexport/same_type_reexported_more_than_once.rs')
-rw-r--r--src/test/rustdoc-json/reexport/same_type_reexported_more_than_once.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/rustdoc-json/reexport/same_type_reexported_more_than_once.rs b/src/test/rustdoc-json/reexport/same_type_reexported_more_than_once.rs
new file mode 100644
index 000000000..eedddd6a7
--- /dev/null
+++ b/src/test/rustdoc-json/reexport/same_type_reexported_more_than_once.rs
@@ -0,0 +1,15 @@
+// Regression test for <https://github.com/rust-lang/rust/issues/97432>.
+
+#![feature(no_core)]
+#![no_std]
+#![no_core]
+
+// @has same_type_reexported_more_than_once.json
+// @has - "$.index[*][?(@.name=='Trait')]"
+pub use inner::Trait;
+// @has - "$.index[*].inner[?(@.name=='Reexport')].id"
+pub use inner::Trait as Reexport;
+
+mod inner {
+ pub trait Trait {}
+}