mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			385 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			385 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // revisions: stock gated
 | |
| // gate-test-const_trait_impl
 | |
| 
 | |
| #![cfg_attr(gated, feature(const_trait_impl))]
 | |
| #![feature(rustc_attrs)]
 | |
| 
 | |
| struct S;
 | |
| #[const_trait] //[stock]~ ERROR `const_trait` is a temporary placeholder
 | |
| trait T {}
 | |
| impl const T for S {}
 | |
| //[stock]~^ ERROR const trait impls are experimental
 | |
| 
 | |
| #[rustc_error]
 | |
| fn main() {} //[gated]~ ERROR fatal error triggered by #[rustc_error]
 | 
