2019-08-19 22:24:07 -04:00
|
|
|
error: casting a character literal to `u8` truncates
|
2023-07-28 20:40:44 +02:00
|
|
|
--> $DIR/char_lit_as_u8.rs:5:13
|
2018-10-06 09:18:06 -07:00
|
|
|
|
|
2023-07-28 20:40:44 +02:00
|
|
|
LL | let _ = '❤' as u8;
|
2018-10-06 09:18:06 -07:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2019-08-19 22:24:07 -04:00
|
|
|
= note: `char` is four bytes wide, but `u8` is a single byte
|
2022-09-22 20:04:22 +04:00
|
|
|
= note: `-D clippy::char-lit-as-u8` implied by `-D warnings`
|
2017-02-07 21:05:30 +01:00
|
|
|
|
2018-01-16 17:06:27 +01:00
|
|
|
error: aborting due to previous error
|
|
|
|
|