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, 22 insertions, 0 deletions
diff --git a/src/test/ui/parser/raw/raw-str-unbalanced.rs b/src/test/ui/parser/raw/raw-str-unbalanced.rs
new file mode 100644
index 000000000..38537f8b3
--- /dev/null
+++ b/src/test/ui/parser/raw/raw-str-unbalanced.rs
@@ -0,0 +1,22 @@
+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() {}