13 lines
163 B
Rust
13 lines
163 B
Rust
// check-pass
|
|
|
|
#![deny(dead_code)]
|
|
|
|
const LEN: usize = 4;
|
|
|
|
#[derive(Debug)]
|
|
struct Wrapper([u8; LEN]);
|
|
|
|
fn main() {
|
|
println!("{:?}", Wrapper([0, 1, 2, 3]));
|
|
}
|