mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
87373d7f52
Comments out the C string literals due to https://github.com/rust-lang/rust/pull/113334 Fixes https://github.com/rust-lang/rust-clippy/issues/11121
40 lines
1.4 KiB
Text
40 lines
1.4 KiB
Text
error: unnecessary hashes around raw string literal
|
|
--> $DIR/needless_raw_string_hashes.rs:8:5
|
|
|
|
|
LL | r##"Hello "world"!"##;
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `r#"Hello "world"!"#`
|
|
|
|
|
= note: `-D clippy::needless-raw-string-hashes` implied by `-D warnings`
|
|
|
|
error: unnecessary hashes around raw string literal
|
|
--> $DIR/needless_raw_string_hashes.rs:9:5
|
|
|
|
|
LL | r######" "### "## "# "######;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `r####" "### "## "# "####`
|
|
|
|
error: unnecessary hashes around raw string literal
|
|
--> $DIR/needless_raw_string_hashes.rs:10:5
|
|
|
|
|
LL | r######" "aa" "# "## "######;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `r###" "aa" "# "## "###`
|
|
|
|
error: unnecessary hashes around raw string literal
|
|
--> $DIR/needless_raw_string_hashes.rs:12:5
|
|
|
|
|
LL | br##"Hello "world"!"##;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: try: `br#"Hello "world"!"#`
|
|
|
|
error: unnecessary hashes around raw string literal
|
|
--> $DIR/needless_raw_string_hashes.rs:13:5
|
|
|
|
|
LL | br######" "### "## "# "######;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `br####" "### "## "# "####`
|
|
|
|
error: unnecessary hashes around raw string literal
|
|
--> $DIR/needless_raw_string_hashes.rs:14:5
|
|
|
|
|
LL | br######" "aa" "# "## "######;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `br###" "aa" "# "## "###`
|
|
|
|
error: aborting due to 6 previous errors
|
|
|