(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
arrays2.rs
// { dg-additional-options "-w" }
fn main() {
    let array: [i32; 5] = [1, 2, 3];
    // { dg-error "expected an array with a fixed size of 5 elements, found one with 3 elements" "" { target *-*-* } .-1 }
}