2012-10-15 19:12:42 -05:00
|
|
|
struct C {
|
2015-01-08 04:54:35 -06:00
|
|
|
x: isize,
|
2012-11-14 00:22:37 -06:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl Drop for C {
|
2013-09-16 20:18:07 -05:00
|
|
|
fn drop(&mut self) {
|
2014-10-14 20:07:11 -05:00
|
|
|
println!("dropping: {}", self.x);
|
2012-10-15 19:12:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let c = C{ x: 2};
|
2015-05-03 00:30:59 -05:00
|
|
|
let _d = c.clone(); //~ ERROR no method named `clone` found
|
2012-11-14 00:22:37 -06:00
|
|
|
}
|