mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +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());
|
|
}
|