2
0
Fork 0
mirror of https://github.com/rust-lang/rust-clippy synced 2024-12-23 11:33:19 +00:00
rust-clippy/tests/ui/char_lit_as_u8_suggestions.fixed

11 lines
141 B
Rust
Raw Normal View History

// run-rustfix
#![warn(clippy::char_lit_as_u8)]
fn main() {
let _ = b'a';
let _ = b'\n';
let _ = b'\0';
let _ = b'\x01';
}