]> git.lizzy.rs Git - rust.git/blob - tests/ui/char_lit_as_u8.rs
Reduce the hackiness of cargo-clippy
[rust.git] / tests / ui / char_lit_as_u8.rs
1
2
3
4 #![warn(char_lit_as_u8)]
5 #![allow(unused_variables)]
6 fn main() {
7     let c = 'a' as u8;
8 }