mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			591 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			591 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(rustc_attrs)]
 | |
| 
 | |
| //@ set Local = "$.index[?(@.name=='Local')].id"
 | |
| pub trait Local {}
 | |
| 
 | |
| //@ is "$.index[?(@.docs=='Local for bool')].inner.impl.trait.id" $Local
 | |
| //@ is "$.index[?(@.docs=='Local for bool')].inner.impl.for.primitive" '"bool"'
 | |
| /// Local for bool
 | |
| impl Local for bool {}
 | |
| 
 | |
| //@ set impl =  "$.index[?(@.docs=='Local for bool')].id"
 | |
| //@ is "$.index[?(@.name=='Local')].inner.trait.implementations[*]" $impl
 | |
| 
 | |
| // FIXME(#101695): Test bool's `impls` include "Local for bool"
 | |
| //@ has "$.index[?(@.name=='bool')]"
 | |
| #[rustc_doc_primitive = "bool"]
 | |
| /// Boolean docs
 | |
| mod prim_bool {}
 | 
