summaryrefslogtreecommitdiffstats
path: root/src/test/ui/deriving/deriving-clone-array.rs
blob: 4569749df42fa24e8d2057b8d01ad54633490b6b (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass
#![allow(dead_code)]
// test for issue #30244

#[derive(Copy, Clone)]
struct Array {
    arr: [[u8; 256]; 4]
}

pub fn main() {}