mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-27 02:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			479 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			479 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Regression test for <https://github.com/rust-lang/rust/issues/98002>.
 | |
| 
 | |
| // Keywords should not be generated in rustdoc JSON output and this test
 | |
| // ensures it.
 | |
| 
 | |
| #![feature(rustdoc_internals)]
 | |
| #![no_std]
 | |
| 
 | |
| //@ !has "$.index[*][?(@.name=='match')]"
 | |
| //@ has "$.index[*][?(@.name=='foo')]"
 | |
| 
 | |
| #[doc(keyword = "match")]
 | |
| /// this is a test!
 | |
| pub mod foo {}
 | |
| 
 | |
| //@ !has "$.index[*][?(@.name=='hello')]"
 | |
| //@ !has "$.index[*][?(@.name=='bar')]"
 | |
| #[doc(keyword = "hello")]
 | |
| /// hello
 | |
| mod bar {}
 | 
