mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
95 lines
1.9 KiB
Text
95 lines
1.9 KiB
Text
error: unnecessary raw string literal
|
|
--> tests/ui/needless_raw_string.rs:5:5
|
|
|
|
|
LL | r#"aaa"#;
|
|
| ^^^^^^^^
|
|
|
|
|
= note: `-D clippy::needless-raw-strings` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::needless_raw_strings)]`
|
|
help: use a plain string literal instead
|
|
|
|
|
LL - r#"aaa"#;
|
|
LL + "aaa";
|
|
|
|
|
|
|
error: unnecessary raw string literal
|
|
--> tests/ui/needless_raw_string.rs:8:5
|
|
|
|
|
LL | br#"aaa"#;
|
|
| ^^^^^^^^^
|
|
|
|
|
help: use a plain byte string literal instead
|
|
|
|
|
LL - br#"aaa"#;
|
|
LL + b"aaa";
|
|
|
|
|
|
|
error: unnecessary raw string literal
|
|
--> tests/ui/needless_raw_string.rs:11:5
|
|
|
|
|
LL | cr#"aaa"#;
|
|
| ^^^^^^^^^
|
|
|
|
|
help: use a plain C string literal instead
|
|
|
|
|
LL - cr#"aaa"#;
|
|
LL + c"aaa";
|
|
|
|
|
|
|
error: unnecessary raw string literal
|
|
--> tests/ui/needless_raw_string.rs:15:5
|
|
|
|
|
LL | / r#"
|
|
LL | | a
|
|
LL | | multiline
|
|
LL | | string
|
|
LL | | "#;
|
|
| |______^
|
|
|
|
|
help: use a plain string literal instead
|
|
|
|
|
LL ~ "
|
|
LL | a
|
|
LL | multiline
|
|
LL | string
|
|
LL ~ ";
|
|
|
|
|
|
|
error: unnecessary raw string literal
|
|
--> tests/ui/needless_raw_string.rs:21:5
|
|
|
|
|
LL | r"no hashes";
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
help: use a plain string literal instead
|
|
|
|
|
LL - r"no hashes";
|
|
LL + "no hashes";
|
|
|
|
|
|
|
error: unnecessary raw string literal
|
|
--> tests/ui/needless_raw_string.rs:22:5
|
|
|
|
|
LL | br"no hashes";
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
help: use a plain byte string literal instead
|
|
|
|
|
LL - br"no hashes";
|
|
LL + b"no hashes";
|
|
|
|
|
|
|
error: unnecessary raw string literal
|
|
--> tests/ui/needless_raw_string.rs:23:5
|
|
|
|
|
LL | cr"no hashes";
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
help: use a plain C string literal instead
|
|
|
|
|
LL - cr"no hashes";
|
|
LL + c"no hashes";
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
|
|