mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			266 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			266 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // See issue 19712
 | |
| 
 | |
| #![deny(missing_copy_implementations)]
 | |
| 
 | |
| mod inner {
 | |
|     pub struct Foo { //~ ERROR type could implement `Copy`; consider adding `impl Copy`
 | |
|         pub field: i32
 | |
|     }
 | |
| }
 | |
| 
 | |
| pub fn foo() -> inner::Foo {
 | |
|     inner::Foo { field: 42 }
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
