mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
198 B
Rust
15 lines
198 B
Rust
//@ run-pass
|
|
#![allow(dead_code)]
|
|
struct S<T> {
|
|
x: T
|
|
}
|
|
|
|
impl<T> ::std::ops::Drop for S<T> {
|
|
fn drop(&mut self) {
|
|
println!("bye");
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let _x = S { x: 1 };
|
|
}
|