mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			736 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			736 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| error: ['a: *, 'a: o]
 | |
|   --> $DIR/variance.rs:11:36
 | |
|    |
 | |
| LL | fn not_captured_early<'a: 'a>() -> impl Sized {}
 | |
|    |                                    ^^^^^^^^^^
 | |
| 
 | |
| error: ['a: *, 'a: o]
 | |
|   --> $DIR/variance.rs:15:32
 | |
|    |
 | |
| LL | fn captured_early<'a: 'a>() -> impl Sized + Captures<'a> {}
 | |
|    |                                ^^^^^^^^^^^^^^^^^^^^^^^^^
 | |
| 
 | |
| error: ['a: o]
 | |
|   --> $DIR/variance.rs:17:40
 | |
|    |
 | |
| LL | fn not_captured_late<'a>(_: &'a ()) -> impl Sized {}
 | |
|    |                                        ^^^^^^^^^^
 | |
| 
 | |
| error: ['a: o]
 | |
|   --> $DIR/variance.rs:21:36
 | |
|    |
 | |
| LL | fn captured_late<'a>(_: &'a ()) -> impl Sized + Captures<'a> {}
 | |
|    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^
 | |
| 
 | |
| error: aborting due to 4 previous errors
 | |
| 
 | 
