blob: cfb07b647d7c67e04a532e3673d31fac7fd509ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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"`
error: aborting due to 2 previous errors
|