mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
19 lines
238 B
Rust
19 lines
238 B
Rust
//@ run-pass
|
|
#![allow(non_camel_case_types)]
|
|
|
|
struct foo {
|
|
x: String,
|
|
}
|
|
|
|
impl Drop for foo {
|
|
fn drop(&mut self) {
|
|
println!("{}", self.x);
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let _z = foo {
|
|
x: "Hello".to_string()
|
|
};
|
|
}
|