diff options
| author | Centri3 <114838443+Centri3@users.noreply.github.com> | 2023-06-09 21:40:09 -0500 |
|---|---|---|
| committer | Catherine <114838443+Centri3@users.noreply.github.com> | 2023-06-27 05:12:00 -0500 |
| commit | cb52d19ce106f2ba2c4e1cca860757170c1db2ed (patch) | |
| tree | 3d5aaaf4792ba5881d9c911402fd074c3801b09c /tests/ui/needless_raw_string_hashes.fixed | |
| parent | ec765d951611c680e9351cd04c959568979ce231 (diff) | |
don't lint `needless_raw_string_hashes` when it's unnecessary
Diffstat (limited to 'tests/ui/needless_raw_string_hashes.fixed')
| -rw-r--r-- | tests/ui/needless_raw_string_hashes.fixed | 6 |
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" "# "## "###; |
