mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			557 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			557 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ compile-flags: -Z force-unstable-if-unmarked
 | |
| 
 | |
| // Check that the unstable marker is not added for "rustc_private".
 | |
| 
 | |
| //@ !matches internal/index.html \
 | |
| //      '//*[@class="desc docblock-short"]/span[@class="stab unstable"]' \
 | |
| //      ''
 | |
| //@ !matches internal/index.html \
 | |
| //      '//*[@class="desc docblock-short"]/span[@class="stab internal"]' \
 | |
| //      ''
 | |
| //@ matches - '//dd' 'Docs'
 | |
| 
 | |
| //@ !has internal/struct.S.html '//*[@class="stab unstable"]' ''
 | |
| //@ !has internal/struct.S.html '//*[@class="stab internal"]' ''
 | |
| /// Docs
 | |
| pub struct S;
 | |
| 
 | |
| fn main() {}
 | 
