2023-06-08 06:55:47 -05:00
|
|
|
error: unnecessary raw string literal
|
|
|
|
--> $DIR/needless_raw_string.rs:7:5
|
|
|
|
|
|
|
|
|
LL | r#"aaa"#;
|
|
|
|
| ^^^^^^^^ help: try: `"aaa"`
|
|
|
|
|
|
2023-06-15 14:15:10 -05:00
|
|
|
= note: `-D clippy::needless-raw-strings` implied by `-D warnings`
|
2023-06-08 06:55:47 -05:00
|
|
|
|
|
|
|
error: unnecessary raw string literal
|
|
|
|
--> $DIR/needless_raw_string.rs:10:5
|
|
|
|
|
|
|
|
|
LL | br#"aaa"#;
|
|
|
|
| ^^^^^^^^^ help: try: `b"aaa"`
|
|
|
|
|
|
|
|
error: unnecessary raw string literal
|
|
|
|
--> $DIR/needless_raw_string.rs:13:5
|
|
|
|
|
|
|
|
|
LL | cr#"aaa"#;
|
|
|
|
| ^^^^^^^^^ help: try: `c"aaa"`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|