rust-clippy/tests/ui/needless_raw_string.rs

17 lines
374 B
Rust
Raw Normal View History

#![allow(clippy::needless_raw_string_hashes, clippy::no_effect, unused)]
#![warn(clippy::needless_raw_strings)]
#![feature(c_str_literals)]
fn main() {
r#"aaa"#;
r#""aaa""#;
r#"\s"#;
br#"aaa"#;
br#""aaa""#;
br#"\s"#;
// currently disabled: https://github.com/rust-lang/rust/issues/113333
// cr#"aaa"#;
// cr#""aaa""#;
// cr#"\s"#;
}