mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			251 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			251 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-rustfix
 | |
| struct Foo {
 | |
|     x: isize
 | |
| }
 | |
| 
 | |
| impl Drop for Foo {
 | |
|     fn drop(&mut self) {
 | |
|         println!("kaboom");
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     let x = Foo { x: 3 };
 | |
|     println!("{}", x.x);
 | |
|     x.drop();   //~ ERROR explicit use of destructor method
 | |
| }
 | 
