summaryrefslogtreecommitdiffstats
path: root/src/test/ui/derives/derive-macro-const-default.rs
blob: ce80271d274b0ef6a5468bc0b144be2324db41af (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);
    }
}