summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/raw-ident-eliminate-r-hashtag.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/raw-ident-eliminate-r-hashtag.rs')
-rw-r--r--src/test/rustdoc/raw-ident-eliminate-r-hashtag.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/rustdoc/raw-ident-eliminate-r-hashtag.rs b/src/test/rustdoc/raw-ident-eliminate-r-hashtag.rs
deleted file mode 100644
index 7dbe63854..000000000
--- a/src/test/rustdoc/raw-ident-eliminate-r-hashtag.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-#![crate_type="lib"]
-
-pub mod internal {
- // @has 'raw_ident_eliminate_r_hashtag/internal/struct.mod.html'
- #[allow(non_camel_case_types)]
- pub struct r#mod;
-
- /// See [name], [other name]
- ///
- /// [name]: mod
- /// [other name]: crate::internal::mod
- // @has 'raw_ident_eliminate_r_hashtag/internal/struct.B.html' '//*a[@href="struct.mod.html"]' 'name'
- // @has 'raw_ident_eliminate_r_hashtag/internal/struct.B.html' '//*a[@href="struct.mod.html"]' 'other name'
- pub struct B;
-}
-
-/// See [name].
-///
-/// [name]: internal::mod
-// @has 'raw_ident_eliminate_r_hashtag/struct.A.html' '//*a[@href="internal/struct.mod.html"]' 'name'
-pub struct A;