mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			375 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			375 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(generic_const_exprs)]
 | |
| #![allow(incomplete_features)]
 | |
| 
 | |
| 
 | |
| const fn bar<T: ?Sized>() -> usize { 7 }
 | |
| 
 | |
| trait Foo {
 | |
|     fn test(&self) -> [u8; bar::<Self>()];
 | |
| }
 | |
| 
 | |
| impl Foo for () {
 | |
|     fn test(&self) -> [u8; bar::<Self>()] {
 | |
|         [0; bar::<Self>()]
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn use_dyn(v: &dyn Foo) { //~ERROR the trait `Foo` cannot be made into an object
 | |
|     v.test();
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
