mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			166 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			166 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![crate_name = "foo"]
 | |
| 
 | |
| pub mod iter {
 | |
|     mod range {
 | |
|         pub struct StepBy;
 | |
|     }
 | |
|     pub use self::range::StepBy as DeprecatedStepBy;
 | |
|     pub struct StepBy;
 | |
| }
 | 
