summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0605.rs
blob: 0e86e367e8328834103daca8a73f15f0bfa6ab4a (plain)
1
2
3
4
5
6
7
fn main() {
    let x = 0u8;
    x as Vec<u8>; //~ ERROR E0605

    let v = 0 as *const u8;
    v as &u8; //~ ERROR E0605
}