mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
193 B
Rust
12 lines
193 B
Rust
// run-pass
|
|
#![allow(unused_mut)]
|
|
fn into_inner() -> [u64; 1024] {
|
|
let mut x = 10 + 20;
|
|
[x; 1024]
|
|
}
|
|
|
|
fn main(){
|
|
let x: &[u64] = &[30; 1024];
|
|
assert_eq!(&into_inner()[..], x);
|
|
}
|