2019-08-20 02:24:07 +00:00
|
|
|
error: casting a character literal to `u8` truncates
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/char_lit_as_u8.rs:5:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | let _ = '❤' as u8;
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2019-08-20 02:24:07 +00:00
|
|
|
= note: `char` is four bytes wide, but `u8` is a single byte
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::char-lit-as-u8` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::char_lit_as_u8)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2023-11-21 17:08:42 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-01-16 16:06:27 +00:00
|
|
|
|