mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
17 lines
478 B
Text
17 lines
478 B
Text
error: unnecessary raw string literal
|
|
--> $DIR/needless_raw_string.rs:6:5
|
|
|
|
|
LL | r#"aaa"#;
|
|
| ^^^^^^^^ help: try: `"aaa"`
|
|
|
|
|
= note: `-D clippy::needless-raw-strings` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::needless_raw_strings)]`
|
|
|
|
error: unnecessary raw string literal
|
|
--> $DIR/needless_raw_string.rs:9:5
|
|
|
|
|
LL | br#"aaa"#;
|
|
| ^^^^^^^^^ help: try: `b"aaa"`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|