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]
}