mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			249 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			249 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(rustc_attrs)]
 | |
| #![feature(rustdoc_internals)]
 | |
| #![no_std]
 | |
| 
 | |
| pub mod str {
 | |
|     #![rustc_doc_primitive = "str"]
 | |
| 
 | |
|     impl str {
 | |
|         // @hasraw search-index.js foo
 | |
|         #[rustc_allow_incoherent_impl]
 | |
|         pub fn foo(&self) {}
 | |
|     }
 | |
| }
 | 
