blob: 5bba29d11339600a11ed61b42dcc79d1209ee7bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ check-pass
#[derive(Clone, PartialEq, Debug)]
struct Example<T, const N: usize = 1usize>([T; N]);
fn main() {
let a = Example([(); 16]);
let b = a.clone();
if a != b {
let _c = format!("{:?}", a);
}
}
|