mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			274 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			274 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "foo"]
 | |
| 
 | |
| //@ has 'foo/struct.Foo.html'
 | |
| //@ has - '//*[@id="impl-Send-for-Foo"]' 'impl !Send for Foo'
 | |
| //@ has - '//*[@id="impl-Sync-for-Foo"]' 'impl !Sync for Foo'
 | |
| pub struct Foo(*const i8);
 | |
| pub trait Whatever: Send {}
 | |
| impl<T: Send + ?Sized> Whatever for T {}
 | 
