]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/broken-mir-2.rs
Auto merge of #75280 - overdrivenpotato:psp-unwind, r=dtolnay
[rust.git] / src / test / ui / const-generics / broken-mir-2.rs
1 // run-pass
2
3 #![feature(const_generics)]
4 //~^ WARN the feature `const_generics` is incomplete
5
6 use std::fmt::Debug;
7
8 #[derive(Debug)]
9 struct S<T: Debug, const N: usize>([T; N]);
10
11 fn main() {}