rust/tests/ui/error-codes/E0606.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
547 B
Plaintext
Raw Normal View History

2018-02-08 11:35:35 +08:00
error[E0606]: casting `&u8` as `u8` is invalid
2023-01-18 08:14:56 +08:00
--> $DIR/E0606.rs:2:14
2018-02-08 11:35:35 +08:00
|
2023-01-18 08:14:56 +08: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;
| ^^^^^^^
|
help: dereference the expression
|
2023-01-18 08:14:56 +08:00
LL | *x as u8;
| +
2018-02-08 11:35:35 +08:00
2023-01-18 08:14:56 +08:00
error: aborting due to 2 previous errors
2018-02-08 11:35:35 +08:00
2018-03-03 22:59:40 +08:00
For more information about this error, try `rustc --explain E0606`.