summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc/issue-12834.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc/issue-12834.rs')
-rw-r--r--src/test/rustdoc/issue-12834.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/rustdoc/issue-12834.rs b/src/test/rustdoc/issue-12834.rs
deleted file mode 100644
index 9605a1e78..000000000
--- a/src/test/rustdoc/issue-12834.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// Tests that failing to syntax highlight a rust code-block doesn't cause
-// rustdoc to fail, while still rendering the code-block (without highlighting).
-
-#![allow(rustdoc::invalid_rust_codeblocks)]
-
-// @has issue_12834/fn.foo.html
-// @has - //pre 'a + b '
-
-/// ```
-/// a + b ∈ Self ∀ a, b ∈ Self
-/// ```
-pub fn foo() {}