diff options
Diffstat (limited to 'src/test/rustdoc/issue-61592.rs')
-rw-r--r-- | src/test/rustdoc/issue-61592.rs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/rustdoc/issue-61592.rs b/src/test/rustdoc/issue-61592.rs deleted file mode 100644 index 4b6c37b94..000000000 --- a/src/test/rustdoc/issue-61592.rs +++ /dev/null @@ -1,15 +0,0 @@ -// 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 _; |