Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
ab1f382ca8fa4a4c0dde58679207f9bec394fa0e
/
.
/
tests
/
ui
/
error-codes
/
E0606.rs
blob: 2d430fcdc169fcb323a578477e2d3b6fb30c74ee [
file
] [
log
] [
blame
]
fn
main
()
{
let
x
=
&(&
0u8
as
u8
);
//~ ERROR E0606
x
as
u8
;
//~ ERROR casting `&u8` as `u8` is invalid [E0606]
}