2023-07-02 07:35:19 -05:00
|
|
|
error: unnecessary raw string literal
|
|
|
|
--> $DIR/needless_raw_string.rs:7:5
|
|
|
|
|
|
|
|
|
LL | r#"aaa"#;
|
|
|
|
| ^^^^^^^^ help: try: `"aaa"`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-raw-strings` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: unnecessary raw string literal
|
|
|
|
--> $DIR/needless_raw_string.rs:10:5
|
|
|
|
|
|
|
|
|
LL | br#"aaa"#;
|
|
|
|
| ^^^^^^^^^ help: try: `b"aaa"`
|
|
|
|
|
2023-07-07 13:18:25 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2023-07-02 07:35:19 -05:00
|
|
|
|