mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
24 lines
364 B
Rust
24 lines
364 B
Rust
#![allow(clippy::needless_raw_string_hashes, clippy::no_effect, unused)]
|
|
#![warn(clippy::needless_raw_strings)]
|
|
|
|
fn main() {
|
|
"aaa";
|
|
r#""aaa""#;
|
|
r#"\s"#;
|
|
b"aaa";
|
|
br#""aaa""#;
|
|
br#"\s"#;
|
|
c"aaa";
|
|
cr#""aaa""#;
|
|
cr#"\s"#;
|
|
|
|
"
|
|
a
|
|
multiline
|
|
string
|
|
";
|
|
|
|
"no hashes";
|
|
b"no hashes";
|
|
c"no hashes";
|
|
}
|