aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/arrays_index2.rs
blob: f9bee7748ee688ee2527fb2bdab6c778e1155b9a (plain)
1
2
3
4
fn main() {
    let mut array: [i32; 3] = [0; 3];
    array[0] = 1;
}