mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
196 B
Rust
13 lines
196 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
enum Two { A, B}
|
|
impl Drop for Two {
|
|
fn drop(&mut self) {
|
|
println!("Dropping!");
|
|
}
|
|
}
|
|
fn main() {
|
|
let k = Two::A;
|
|
}
|