mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
8cb6c86996
Update raw_strings.rs Revert "new lints for visibility" This reverts commit 0e5a537d209727169769dc19cf86aef27122c092. new lints for visibility
16 lines
296 B
Rust
16 lines
296 B
Rust
//@run-rustfix
|
|
#![allow(clippy::needless_raw_string_hashes, clippy::no_effect, unused)]
|
|
#![warn(clippy::needless_raw_strings)]
|
|
#![feature(c_str_literals)]
|
|
|
|
fn main() {
|
|
"aaa";
|
|
r#""aaa""#;
|
|
r#"\s"#;
|
|
b"aaa";
|
|
br#""aaa""#;
|
|
br#"\s"#;
|
|
c"aaa";
|
|
cr#""aaa""#;
|
|
cr#"\s"#;
|
|
}
|