mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			256 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			256 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// check-pass
 | 
						|
 | 
						|
fn main() {}
 | 
						|
 | 
						|
#[cfg(FALSE)]
 | 
						|
extern "C" {
 | 
						|
    type A: Ord;
 | 
						|
    type A<'a> where 'a: 'static;
 | 
						|
    type A<T: Ord> where T: 'static;
 | 
						|
    type A = u8;
 | 
						|
    type A<'a: 'static, T: Ord + 'static>: Eq + PartialEq where T: 'static + Copy = Vec<u8>;
 | 
						|
}
 |