summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/char_lit_as_u8_suggestions.fixed
blob: 3dc3cb4e7573dbb3147ac20f4a876c655da51a5d (plain)
1
2
3
4
5
6
7
8
9
10
// run-rustfix

#![warn(clippy::char_lit_as_u8)]

fn main() {
    let _ = b'a';
    let _ = b'\n';
    let _ = b'\0';
    let _ = b'\x01';
}