mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			289 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			289 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // check-pass
 | |
| 
 | |
| #[cfg(FALSE)]
 | |
| fn syntax() {
 | |
|     foo::<T = u8, T: Ord, String>();
 | |
|     //~^ WARN associated type bounds are unstable
 | |
|     //~| WARN unstable syntax
 | |
|     foo::<T = u8, 'a, T: Ord>();
 | |
|     //~^ WARN associated type bounds are unstable
 | |
|     //~| WARN unstable syntax
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
