blob: 7b443b4152613f620bf2dbe7e5a9d2f2b1b80e00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
struct C {
x: isize,
}
impl Drop for C {
fn drop(&mut self) {
println!("dropping: {}", self.x);
}
}
fn main() {
let c = C{ x: 2};
let _d = c.clone(); //~ ERROR no method named `clone` found
}
|