about summary refs log tree commit diff
path: root/tests/ui/needless_raw_string_hashes.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/needless_raw_string_hashes.fixed')
-rw-r--r--tests/ui/needless_raw_string_hashes.fixed6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/needless_raw_string_hashes.fixed b/tests/ui/needless_raw_string_hashes.fixed
index 1bfb573719d..8d443dabcb7 100644
--- a/tests/ui/needless_raw_string_hashes.fixed
+++ b/tests/ui/needless_raw_string_hashes.fixed
@@ -4,15 +4,15 @@
 #![feature(c_str_literals)]
 
 fn main() {
-    r"aaa";
+    r#"aaa"#;
     r#"Hello "world"!"#;
     r####" "### "## "# "####;
     r###" "aa" "# "## "###;
-    br"aaa";
+    br#"aaa"#;
     br#"Hello "world"!"#;
     br####" "### "## "# "####;
     br###" "aa" "# "## "###;
-    cr"aaa";
+    cr#"aaa"#;
     cr#"Hello "world"!"#;
     cr####" "### "## "# "####;
     cr###" "aa" "# "## "###;