mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
5 lines
124 B
Rust
5 lines
124 B
Rust
#![warn(clippy::char_lit_as_u8)]
|
|
|
|
fn main() {
|
|
let _ = '❤' as u8; // no suggestion, since a byte literal won't work.
|
|
}
|