mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
144 B
Rust
14 lines
144 B
Rust
// run-pass
|
|
|
|
struct S;
|
|
|
|
impl S {
|
|
const N: usize = 3;
|
|
}
|
|
|
|
static STUFF: [u8; S::N] = [0; S::N];
|
|
|
|
fn main() {
|
|
assert_eq!(STUFF, [0; 3]);
|
|
}
|