mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 15:05:30 +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);
 | 
						|
}
 |