mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 02:25:51 +00:00
10 lines
158 B
Rust
10 lines
158 B
Rust
// run-pass
|
|
fn into_inner(x: u64) -> [u64; 1024] {
|
|
[x; 2*4*8*16]
|
|
}
|
|
|
|
fn main(){
|
|
let x: &[u64] = &[42; 1024];
|
|
assert_eq!(&into_inner(42)[..], x);
|
|
}
|