mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
5 lines
87 B
Rust
5 lines
87 B
Rust
fn main() {
|
|
let data: [u8; 1024] = [42; 1024];
|
|
assert_eq!(data.len(), 1024);
|
|
}
|