summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/blanket-reexport-item.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/blanket-reexport-item.rs')
-rw-r--r--src/test/rustdoc/blanket-reexport-item.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/rustdoc/blanket-reexport-item.rs b/src/test/rustdoc/blanket-reexport-item.rs
deleted file mode 100644
index 437f0001f..000000000
--- a/src/test/rustdoc/blanket-reexport-item.rs
+++ /dev/null
@@ -1,8 +0,0 @@
-#![crate_name = "foo"]
-
-// @has foo/struct.S.html '//*[@id="impl-Into%3CU%3E-for-S"]//h3[@class="code-header"]' 'impl<T, U> Into<U> for T'
-pub struct S2 {}
-mod m {
- pub struct S {}
-}
-pub use m::*;