summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/char_lit_as_u8_suggestions.fixed
blob: ce2f149dc05e4a41cf1c07be99e5babc30524d00 (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';
}