mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
19 lines
439 B
Rust
19 lines
439 B
Rust
//@run-rustfix
|
|
#![allow(clippy::no_effect, unused)]
|
|
#![warn(clippy::needless_raw_string_hashes)]
|
|
#![feature(c_str_literals)]
|
|
|
|
fn main() {
|
|
r#"aaa"#;
|
|
r#"Hello "world"!"#;
|
|
r####" "### "## "# "####;
|
|
r###" "aa" "# "## "###;
|
|
br#"aaa"#;
|
|
br#"Hello "world"!"#;
|
|
br####" "### "## "# "####;
|
|
br###" "aa" "# "## "###;
|
|
cr#"aaa"#;
|
|
cr#"Hello "world"!"#;
|
|
cr####" "### "## "# "####;
|
|
cr###" "aa" "# "## "###;
|
|
}
|