• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //@run-rustfix
2 #![allow(clippy::no_effect, unused)]
3 #![warn(clippy::needless_raw_string_hashes)]
4 #![feature(c_str_literals)]
5 
main()6 fn main() {
7     r#"aaa"#;
8     r##"Hello "world"!"##;
9     r######" "### "## "# "######;
10     r######" "aa" "# "## "######;
11     br#"aaa"#;
12     br##"Hello "world"!"##;
13     br######" "### "## "# "######;
14     br######" "aa" "# "## "######;
15     // currently disabled: https://github.com/rust-lang/rust/issues/113333
16     // cr#"aaa"#;
17     // cr##"Hello "world"!"##;
18     // cr######" "### "## "# "######;
19     // cr######" "aa" "# "## "######;
20 }
21