mirror of https://github.com/rust-lang/rust.git
22 lines
280 B
Rust
22 lines
280 B
Rust
|
#[derive(Debug)]
|
||
|
struct Foo {
|
||
|
i: isize,
|
||
|
}
|
||
|
|
||
|
impl Drop for Foo {
|
||
|
fn drop(&mut self) {}
|
||
|
}
|
||
|
|
||
|
fn foo(i:isize) -> Foo {
|
||
|
Foo {
|
||
|
i: i
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let x = foo(10);
|
||
|
let _y = x.clone();
|
||
|
//~^ ERROR no method named `clone` found
|
||
|
println!("{:?}", x);
|
||
|
}
|