Fix FP [needless_raw_string_hashes]

This commit is contained in:
Catherine 2023-07-03 06:35:04 -05:00
parent ea4ca225fb
commit 9a581077d4
3 changed files with 9 additions and 1 deletions

View file

@ -16,4 +16,8 @@ fn main() {
cr#"Hello "world"!"#;
cr####" "### "## "# "####;
cr###" "aa" "# "## "###;
// Issue #11068, do not lint
r##"a"#"a"##;
br##"a"#"a"##;
cr##"a"#"a"##;
}

View file

@ -16,4 +16,8 @@ fn main() {
cr##"Hello "world"!"##;
cr######" "### "## "# "######;
cr######" "aa" "# "## "######;
// Issue #11068, do not lint
r##"a"#"a"##;
br##"a"#"a"##;
cr##"a"#"a"##;
}