mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			574 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			574 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // build-fail
 | |
| // known-bug: #95134
 | |
| // compile-flags: -Copt-level=0
 | |
| // failure-status: 101
 | |
| // dont-check-compiler-stderr
 | |
| 
 | |
| pub fn encode_num<Writer: ExampleWriter>(n: u32, mut writer: Writer) -> Result<(), Writer::Error> {
 | |
|     if n > 15 {
 | |
|         encode_num(n / 16, &mut writer)?;
 | |
|     }
 | |
|     Ok(())
 | |
| }
 | |
| 
 | |
| pub trait ExampleWriter {
 | |
|     type Error;
 | |
| }
 | |
| 
 | |
| impl<'a, T: ExampleWriter> ExampleWriter for &'a mut T {
 | |
|     type Error = T::Error;
 | |
| }
 | |
| 
 | |
| struct EmptyWriter;
 | |
| 
 | |
| impl ExampleWriter for EmptyWriter {
 | |
|     type Error = ();
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     encode_num(69, &mut EmptyWriter).unwrap();
 | |
| }
 | 
