]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/derive-debug-array-wrapper.rs
Merge commit '09bd400243ed6f7059fedc0c1623aae3792521d6' into clippyup
[rust.git] / src / test / ui / const-generics / derive-debug-array-wrapper.rs
1 // run-pass
2
3 #![feature(const_generics)]
4 //~^ WARN the feature `const_generics` is incomplete
5
6 #[derive(Debug)]
7 struct X<const N: usize> {
8     a: [u32; N],
9 }
10
11 fn main() {}