mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			273 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			273 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| #![allow(dead_code)]
 | |
| 
 | |
| fn foo<T>(t: T) -> impl Into<[T; { const FOO: usize = 1; FOO }]> {
 | |
|     [t]
 | |
| }
 | |
| 
 | |
| fn bar() -> impl Into<[u8; { const FOO: usize = 1; FOO }]> {
 | |
|     [99]
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     println!("{:?}", foo(42).into());
 | |
|     println!("{:?}", bar().into());
 | |
| }
 | 
