2023-07-02 07:35:19 -05:00
|
|
|
#![allow(clippy::needless_raw_string_hashes, clippy::no_effect, unused)]
|
|
|
|
#![warn(clippy::needless_raw_strings)]
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
r#"aaa"#;
|
|
|
|
r#""aaa""#;
|
|
|
|
r#"\s"#;
|
|
|
|
br#"aaa"#;
|
|
|
|
br#""aaa""#;
|
|
|
|
br#"\s"#;
|
2023-09-12 11:13:53 -05:00
|
|
|
cr#"aaa"#;
|
|
|
|
cr#""aaa""#;
|
|
|
|
cr#"\s"#;
|
|
|
|
|
|
|
|
r#"
|
|
|
|
a
|
|
|
|
multiline
|
|
|
|
string
|
|
|
|
"#;
|
2023-10-06 10:35:45 -05:00
|
|
|
|
|
|
|
r"no hashes";
|
|
|
|
br"no hashes";
|
|
|
|
cr"no hashes";
|
2023-07-02 07:35:19 -05:00
|
|
|
}
|
2024-10-18 06:44:06 -05:00
|
|
|
|
|
|
|
fn issue_13503() {
|
|
|
|
println!(r"SELECT * FROM posts");
|
|
|
|
println!(r#"SELECT * FROM posts"#);
|
|
|
|
println!(r##"SELECT * FROM "posts""##);
|
|
|
|
|
|
|
|
// Test arguments as well
|
|
|
|
println!("{}", r"foobar".len());
|
|
|
|
}
|