summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/raw/raw-str-unbalanced.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/parser/raw/raw-str-unbalanced.rs')
-rw-r--r--src/test/ui/parser/raw/raw-str-unbalanced.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/parser/raw/raw-str-unbalanced.rs b/src/test/ui/parser/raw/raw-str-unbalanced.rs
deleted file mode 100644
index 38537f8b3..000000000
--- a/src/test/ui/parser/raw/raw-str-unbalanced.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-static s: &'static str =
- r#""## //~ ERROR too many `#` when terminating raw string
-;
-
-static s2: &'static str =
- r#"
- "#### //~ ERROR too many `#` when terminating raw string
-;
-
-const A: &'static str = r"" //~ ERROR expected `;`, found `#`
-
-// Test
-#[test]
-fn test() {}
-
-const B: &'static str = r""## //~ ERROR too many `#` when terminating raw string
-
-// Test
-#[test]
-fn test2() {}
-
-fn main() {}