2023-07-02 07:35:19 -05:00
|
|
|
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" "# "## "###`
|
|
|
|
|
2023-07-07 13:18:25 -05:00
|
|
|
error: aborting due to 6 previous errors
|
2023-07-02 07:35:19 -05:00
|
|
|
|