mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	Go over all structured parser suggestions and make them verbose style. When suggesting to add or remove delimiters, turn them into multiple suggestion parts.
		
			
				
	
	
		
			36 lines
		
	
	
		
			865 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			865 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error: unexpected lifetime `'a` in pattern
 | 
						|
  --> $DIR/lifetime-in-pattern-recover.rs:2:10
 | 
						|
   |
 | 
						|
LL |     let &'a x = &0;
 | 
						|
   |          ^^
 | 
						|
   |
 | 
						|
help: remove the lifetime
 | 
						|
   |
 | 
						|
LL -     let &'a x = &0;
 | 
						|
LL +     let &x = &0;
 | 
						|
   |
 | 
						|
 | 
						|
error: unexpected lifetime `'a` in pattern
 | 
						|
  --> $DIR/lifetime-in-pattern-recover.rs:3:10
 | 
						|
   |
 | 
						|
LL |     let &'a mut y = &mut 0;
 | 
						|
   |          ^^
 | 
						|
   |
 | 
						|
help: remove the lifetime
 | 
						|
   |
 | 
						|
LL -     let &'a mut y = &mut 0;
 | 
						|
LL +     let &mut y = &mut 0;
 | 
						|
   |
 | 
						|
 | 
						|
error[E0308]: mismatched types
 | 
						|
  --> $DIR/lifetime-in-pattern-recover.rs:5:33
 | 
						|
   |
 | 
						|
LL |     let _recovery_witness: () = 0;
 | 
						|
   |                            --   ^ expected `()`, found integer
 | 
						|
   |                            |
 | 
						|
   |                            expected due to this
 | 
						|
 | 
						|
error: aborting due to 3 previous errors
 | 
						|
 | 
						|
For more information about this error, try `rustc --explain E0308`.
 |