Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
error-codes
/
E0606.rs
blob: 6f6c6513846cf228c0deeaad8c651af0faee273c [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
x
=
&(&
0u8
as
u8
);
//~ ERROR E0606
x
as
u8
;
//~ casting `&u8` as `u8` is invalid [E0606]
}