mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
87373d7f52
Comments out the C string literals due to https://github.com/rust-lang/rust/pull/113334 Fixes https://github.com/rust-lang/rust-clippy/issues/11121
17 lines
389 B
Rust
17 lines
389 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() {
|
|
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"#;
|
|
}
|