rust/src/test/ui/const-generics/derive-debug-array-wrapper.rs
2020-07-05 15:47:08 +03:00

11 lines
172 B
Rust

// run-pass
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete
#[derive(Debug)]
struct X<const N: usize> {
a: [u32; N],
}
fn main() {}