about summary refs log tree commit diff
path: root/tests/rustdoc/issue-61592.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc/issue-61592.rs')
-rw-r--r--tests/rustdoc/issue-61592.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/rustdoc/issue-61592.rs b/tests/rustdoc/issue-61592.rs
new file mode 100644
index 00000000000..4b6c37b94aa
--- /dev/null
+++ b/tests/rustdoc/issue-61592.rs
@@ -0,0 +1,15 @@
+// aux-build:issue-61592.rs
+
+extern crate foo;
+
+// @has issue_61592/index.html
+// @has - '//a[@href="#reexports"]' 'Re-exports'
+// @has - '//code' 'pub use foo::FooTrait as _;'
+// @!has - '//a[@href="trait._.html"]' ''
+pub use foo::FooTrait as _;
+
+// @has issue_61592/index.html
+// @has - '//a[@href="#reexports"]' 'Re-exports'
+// @has - '//code' 'pub use foo::FooStruct as _;'
+// @!has - '//a[@href="struct._.html"]' ''
+pub use foo::FooStruct as _;