mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-07-18 17:34:40 -04:00
14 lines
213 B
Rust
14 lines
213 B
Rust
// run-pass
|
|
|
|
pub fn main() {
|
|
let x = [ [true]; 512 ];
|
|
let y = [ 0; 1 ];
|
|
|
|
print!("[");
|
|
for xi in &x[..] {
|
|
print!("{:?}, ", &xi[..]);
|
|
}
|
|
println!("]");
|
|
println!("{:?}", &y[..]);
|
|
}
|