aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/arrays3.rs
blob: 372d969aa07746a3069da5ceabd5571a2581fa3b (plain)
1
2
3
4
5
6
const TEST: usize = 6;

fn main() {
    let a: [_; 12] = [123; TEST * 2];
    // { dg-warning "unused name" "" { target *-*-* } .-1 }
}