2018-02-08 03:35:35 +00:00
|
|
|
error[E0606]: casting `&u8` as `u8` is invalid
|
2023-01-18 00:14:56 +00:00
|
|
|
--> $DIR/E0606.rs:2:14
|
2018-02-08 03:35:35 +00:00
|
|
|
|
|
2023-01-18 00:14:56 +00:00
|
|
|
LL | let x = &(&0u8 as u8);
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: remove the unneeded borrow
|
|
|
|
|
|
|
|
|
LL - let x = &(&0u8 as u8);
|
|
|
|
LL + let x = &(0u8 as u8);
|
|
|
|
|
|
|
|
|
|
|
|
|
error[E0606]: casting `&u8` as `u8` is invalid
|
|
|
|
--> $DIR/E0606.rs:3:5
|
|
|
|
|
|
|
|
|
LL | x as u8;
|
|
|
|
| ^^^^^^^
|
2023-01-16 07:24:01 +00:00
|
|
|
|
|
|
|
|
help: dereference the expression
|
|
|
|
|
|
2023-01-18 00:14:56 +00:00
|
|
|
LL | *x as u8;
|
2023-01-16 07:24:01 +00:00
|
|
|
| +
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2023-01-18 00:14:56 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-02-08 03:35:35 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0606`.
|