mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			126 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			126 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| #![feature(impl_trait_in_bindings)]
 | |
| 
 | |
| trait Foo {}
 | |
| impl Foo for () {}
 | |
| 
 | |
| fn main() {
 | |
|     let x: impl Foo = ();
 | |
| }
 | 
