mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			317 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			317 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "hidden_dep"]
 | |
| #![deny(rustdoc::broken_intra_doc_links)]
 | |
| 
 | |
| #[doc(hidden)]
 | |
| pub mod __reexport {
 | |
|     pub use crate::*;
 | |
| }
 | |
| 
 | |
| pub mod future {
 | |
|     mod ready {
 | |
| 
 | |
|         /// Link to [`ready`](function@ready)
 | |
|         pub struct Ready;
 | |
|         pub fn ready() {}
 | |
| 
 | |
|     }
 | |
|     pub use self::ready::{ready, Ready};
 | |
| 
 | |
| }
 | 
