(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
arrays1.rs
fn main() {
    let xs: [i32; 5] = [1, 2, 3, 4, 5];
    let a: bool = xs[0]; // { dg-error "expected .bool. got .i32." }
}