mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
16 lines
368 B
Rust
16 lines
368 B
Rust
#![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"#;
|
|
// currently disabled: https://github.com/rust-lang/rust/issues/113333
|
|
// cr#"aaa"#;
|
|
// cr#""aaa""#;
|
|
// cr#"\s"#;
|
|
}
|