mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			678 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			678 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(extern_types)]
 | |
| 
 | |
| fn main() {}
 | |
| 
 | |
| extern "C" {
 | |
|     type A: Ord;
 | |
|     //~^ ERROR bounds on `type`s in `extern` blocks have no effect
 | |
|     type B<'a> where 'a: 'static;
 | |
|     //~^ ERROR `type`s inside `extern` blocks cannot have generic parameters
 | |
|     //~| ERROR `type`s inside `extern` blocks cannot have `where` clauses
 | |
|     type C<T: Ord> where T: 'static;
 | |
|     //~^ ERROR `type`s inside `extern` blocks cannot have generic parameters
 | |
|     //~| ERROR `type`s inside `extern` blocks cannot have `where` clauses
 | |
|     type D = u8;
 | |
|     //~^ ERROR incorrect `type` inside `extern` block
 | |
| 
 | |
|     type E: where;
 | |
|     //~^ ERROR `type`s inside `extern` blocks cannot have `where` clauses
 | |
| }
 | 
