summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/remove-url-from-headings.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/remove-url-from-headings.rs')
-rw-r--r--src/test/rustdoc/remove-url-from-headings.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/rustdoc/remove-url-from-headings.rs b/src/test/rustdoc/remove-url-from-headings.rs
deleted file mode 100644
index 599c429a6..000000000
--- a/src/test/rustdoc/remove-url-from-headings.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-#![crate_name = "foo"]
-
-// @has foo/fn.foo.html
-// @!has - '//a[@href="http://a.a"]' ''
-// @has - '//a[@href="#implementing-stuff-somewhere"]' 'Implementing stuff somewhere'
-// @has - '//a[@href="#another-one-urg"]' 'Another one urg'
-
-/// fooo
-///
-/// # Implementing [stuff](http://a.a "title") somewhere
-///
-/// hello
-///
-/// # Another [one][two] urg
-///
-/// [two]: http://a.a
-pub fn foo() {}