summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/without-redirect.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/without-redirect.rs')
-rw-r--r--src/test/rustdoc/without-redirect.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/rustdoc/without-redirect.rs b/src/test/rustdoc/without-redirect.rs
deleted file mode 100644
index a076f8a3c..000000000
--- a/src/test/rustdoc/without-redirect.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-#![crate_name = "foo"]
-
-// @has foo/macro.bar.html
-// @has foo/macro.bar!.html
-// @!has foo/bar.m.html
-#[macro_export]
-macro_rules! bar {
- () => {}
-}
-
-// @has foo/struct.Bar.html
-// @!has foo/Bar.t.html
-pub struct Bar;