(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
torture/
arrays_index3.rs
fn foo() -> usize {
    1
}
    
fn bar() -> [i32; 1] {
    [0]
}
    
    
        
fn main() -> () {
    let a = [10];
    let _b = a[foo()];
    let _c = bar()[foo()];
}