mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			334 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			334 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| type A where 'a: 'b + 'c = u8; // OK
 | |
| type A where 'a: 'b, = u8; // OK
 | |
| type A where 'a: = u8; // OK
 | |
| type A where 'a:, = u8; // OK
 | |
| type A where 'a: 'b + 'c = u8; // OK
 | |
| type A where = u8; // OK
 | |
| type A where 'a: 'b + = u8; // OK
 | |
| type A where , = u8; //~ ERROR expected one of `;`, `=`, `where`, lifetime, or type, found `,`
 | |
| 
 | |
| fn main() {}
 | 
