mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
197 B
Rust
16 lines
197 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 };
|
|
}
|