blob: 0a53a3d6490a3d8ade83eb4de080af0da6fc31ba [file] [log] [blame]
#![warn(clippy::char_lit_as_u8)]
fn main() {
let _ = '❤' as u8; // no suggestion, since a byte literal won't work.
}