about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/char_lit_as_u8.stderr
blob: 9bcded7b0ff4ecf941e42731f5d29ea14ea16b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
error: casting a character literal to `u8` truncates
  --> tests/ui/char_lit_as_u8.rs:4:13
   |
LL |     let _ = 'a' as u8;
   |             ^^^^^^^^^ help: use a byte literal instead: `b'a'`
   |
   = note: `char` is four bytes wide, but `u8` is a single byte
   = note: `-D clippy::char-lit-as-u8` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::char_lit_as_u8)]`

error: casting a character literal to `u8` truncates
  --> tests/ui/char_lit_as_u8.rs:6:13
   |
LL |     let _ = '\n' as u8;
   |             ^^^^^^^^^^ help: use a byte literal instead: `b'\n'`
   |
   = note: `char` is four bytes wide, but `u8` is a single byte

error: casting a character literal to `u8` truncates
  --> tests/ui/char_lit_as_u8.rs:8:13
   |
LL |     let _ = '\0' as u8;
   |             ^^^^^^^^^^ help: use a byte literal instead: `b'\0'`
   |
   = note: `char` is four bytes wide, but `u8` is a single byte

error: casting a character literal to `u8` truncates
  --> tests/ui/char_lit_as_u8.rs:10:13
   |
LL |     let _ = '\x01' as u8;
   |             ^^^^^^^^^^^^ help: use a byte literal instead: `b'\x01'`
   |
   = note: `char` is four bytes wide, but `u8` is a single byte

error: aborting due to 4 previous errors