mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
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);
|
|
}
|