mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			194 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			194 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ known-bug: rust-lang/rust#126269
 | 
						|
#![feature(coerce_unsized)]
 | 
						|
 | 
						|
pub enum Foo<T> {
 | 
						|
    Bar([T; usize::MAX]),
 | 
						|
}
 | 
						|
 | 
						|
use std::ops::CoerceUnsized;
 | 
						|
 | 
						|
impl<T, U> CoerceUnsized<U> for T {}
 | 
						|
 | 
						|
fn main() {}
 |