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
17 lines
397 B
Plaintext
17 lines
397 B
Plaintext
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
|
|
|