| #[warn(clippy::invisible_characters)] |
| print!("Here >\u{200B}< is a ZWS, and \u{200B}another"); |
| print!("This\u{200B}is\u{200B}fine"); |
| print!("Here >\u{AD}< is a SHY, and \u{AD}another"); |
| print!("This\u{ad}is\u{ad}fine"); |
| print!("Here >\u{2060}< is a WJ, and \u{2060}another"); |
| print!("This\u{2060}is\u{2060}fine"); |
| #[warn(clippy::unicode_not_nfc)] |
| print!("a\u{0300}h?"); // also ok |
| #![deny(clippy::non_ascii_literal)] |
| print!("\u{DC}ben!"); // this is ok |
| const _EMPTY_BLOCK: char = '\u{25b1}'; |
| const _FULL_BLOCK: char = '\u{25b0}'; |
| // Ryū crate: https://github.com/dtolnay/ryu |
| #![deny(clippy::non_ascii_literal)] |
| // Re-allow for a single test |
| #[allow(clippy::non_ascii_literal)] |
| let _ = "悲しいかな、ここに日本語を書くことはできない。"; |
| let _ = "\u{60b2}\u{3057}\u{3044}\u{304b}\u{306a}\u{3001}\u{3053}\u{3053}\u{306b}\u{65e5}\u{672c}\u{8a9e}\u{3092}\u{66f8}\u{304f}\u{3053}\u{3068}\u{306f}\u{3067}\u{304d}\u{306a}\u{3044}\u{3002}"; |