2017-02-07 14:05:30 -06:00
|
|
|
error: casting character literal to u8. `char`s are 4 bytes wide in rust, so casting to u8 truncates them
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/char_lit_as_u8.rs:4:13
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let c = 'a' as u8;
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::char-lit-as-u8` implied by `-D warnings`
|
|
|
|
= help: Consider using a byte literal instead:
|
|
|
|
b'a'
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to previous error
|
|
|
|
|