Auto merge of #11518 - mojave2:issue-11420, r=Alexendoo

fix FP with needless_raw_string_hashes

changelog: Fix [`needless_raw_string_hashes`]: Continue the lint checking of raw string when `needless_raw_strings` is allowed.

fix #11420
This commit is contained in:
bors 2023-09-21 12:27:24 +00:00
commit 4d143d7e16
5 changed files with 35 additions and 4 deletions

View file

@ -21,4 +21,7 @@ fn main() {
multiline
string
";
r"rust";
r"hello world";
}

View file

@ -21,4 +21,7 @@ fn main() {
multiline
string
"#;
r###"rust"###;
r#"hello world"#;
}

View file

@ -163,5 +163,29 @@ LL | string
LL ~ ";
|
error: aborting due to 13 previous errors
error: unnecessary hashes around raw string literal
--> $DIR/needless_raw_string_hashes.rs:25:5
|
LL | r###"rust"###;
| ^^^^^^^^^^^^^
|
help: remove all the hashes around the literal
|
LL - r###"rust"###;
LL + r"rust";
|
error: unnecessary hashes around raw string literal
--> $DIR/needless_raw_string_hashes.rs:26:5
|
LL | r#"hello world"#;
| ^^^^^^^^^^^^^^^^
|
help: remove all the hashes around the literal
|
LL - r#"hello world"#;
LL + r"hello world";
|
error: aborting due to 15 previous errors