mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			286 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			286 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error: unexpected `=` after inclusive range
 | 
						|
  --> $DIR/range-inclusive-extra-equals.rs:7:13
 | 
						|
   |
 | 
						|
LL |     if let 1..==3 = 1 {}
 | 
						|
   |             ^^^^ help: use `..=` instead
 | 
						|
   |
 | 
						|
   = note: inclusive ranges end with a single equals sign (`..=`)
 | 
						|
 | 
						|
error: aborting due to 1 previous error
 | 
						|
 |