Files
rust/tests/ui/char_lit_as_u8.fixed
T
Ada Alakbarova ff2b5e66a1 test: make suggestions the main file
since it's the one that has suggestions
2025-08-13 16:34:24 +02:00

13 lines
221 B
Rust

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