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

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