mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-10-31 07:53:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			306 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			306 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #[derive(Send)]
 | |
| //~^ ERROR cannot find derive macro `Send` in this scope
 | |
| //~| ERROR cannot find derive macro `Send` in this scope
 | |
| struct Test;
 | |
| 
 | |
| #[derive(Sync)]
 | |
| //~^ ERROR cannot find derive macro `Sync` in this scope
 | |
| //~| ERROR cannot find derive macro `Sync` in this scope
 | |
| struct Test1;
 | |
| 
 | |
| pub fn main() {}
 | 
