mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			600 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			600 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "foo"]
 | |
| 
 | |
| // @has foo/struct.Unsized.html
 | |
| // @has - '//*[@id="impl-Sized-for-Unsized"]/h3[@class="code-header"]' 'impl !Sized for Unsized'
 | |
| // @!has - '//*[@id="impl-Sized-for-Unsized"]//a[@class="src"]' 'source'
 | |
| // @has - '//*[@id="impl-Sync-for-Unsized"]/h3[@class="code-header"]' 'impl Sync for Unsized'
 | |
| // @!has - '//*[@id="impl-Sync-for-Unsized"]//a[@class="src"]' 'source'
 | |
| // @has - '//*[@id="impl-Any-for-Unsized"]/h3[@class="code-header"]' 'impl<T> Any for T'
 | |
| // @has - '//*[@id="impl-Any-for-Unsized"]//a[@class="src rightside"]' 'source'
 | |
| pub struct Unsized {
 | |
|     data: [u8],
 | |
| }
 | 
