]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/needless_raw_string.fixed
New upstream version 1.72.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / needless_raw_string.fixed
1 //@run-rustfix
2 #![allow(clippy::needless_raw_string_hashes, clippy::no_effect, unused)]
3 #![warn(clippy::needless_raw_strings)]
4 #![feature(c_str_literals)]
5
6 fn main() {
7 "aaa";
8 r#""aaa""#;
9 r#"\s"#;
10 b"aaa";
11 br#""aaa""#;
12 br#"\s"#;
13 // currently disabled: https://github.com/rust-lang/rust/issues/113333
14 // cr#"aaa"#;
15 // cr#""aaa""#;
16 // cr#"\s"#;
17 }