summary refs log tree commit diff
path: root/tests/ui/cenum_impl_drop_cast.rs
blob: f681434dd86ac90990b4907dc647c545d9a0c5ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
enum E {
    A = 0,
}

impl Drop for E {
    fn drop(&mut self) {
        println!("Drop");
    }
}

fn main() {
    let e = E::A;
    let i = e as u32;
    //~^ ERROR cannot cast enum `E` into integer `u32` because it implements `Drop`
}