2023-07-02 12:35:19 +00:00
|
|
|
#![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"#;
|
2023-09-12 16:13:53 +00:00
|
|
|
c"aaa";
|
|
|
|
cr#""aaa""#;
|
|
|
|
cr#"\s"#;
|
|
|
|
|
|
|
|
"
|
|
|
|
a
|
|
|
|
multiline
|
|
|
|
string
|
|
|
|
";
|
2023-10-06 15:35:45 +00:00
|
|
|
|
|
|
|
"no hashes";
|
|
|
|
b"no hashes";
|
|
|
|
c"no hashes";
|
2023-07-02 12:35:19 +00:00
|
|
|
}
|
2024-10-05 13:58:30 +00:00
|
|
|
|
|
|
|
fn issue_13503() {
|
|
|
|
println!("SELECT * FROM posts");
|
|
|
|
println!("SELECT * FROM posts");
|
|
|
|
println!(r##"SELECT * FROM "posts""##);
|
|
|
|
|
|
|
|
// Test arguments as well
|
|
|
|
println!("{}", "foobar".len());
|
|
|
|
}
|