mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			361 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			361 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(generic_const_exprs)]
 | |
| #![allow(incomplete_features)]
 | |
| 
 | |
| 
 | |
| const fn bar<T: ?Sized>() -> usize { 7 }
 | |
| 
 | |
| trait Foo {
 | |
|     fn test(&self) where [u8; bar::<Self>()]: Sized;
 | |
| }
 | |
| 
 | |
| impl Foo for () {
 | |
|     fn test(&self) where [u8; bar::<Self>()]: Sized {}
 | |
| }
 | |
| 
 | |
| fn use_dyn(v: &dyn Foo) {
 | |
|     //~^ ERROR the trait `Foo` is not dyn compatible
 | |
|     v.test();
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
