summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/issue-79152-const-array-index.rs
blob: 95518e1bbdbd9354d8fa56c58b1f8caa1a2f1f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
// check-pass
// Regression test for issue #79152
//
// Tests that we can index an array in a const function

const fn foo() {
    let mut array = [[0; 1]; 1];
    array[0][0] = 1;
}

fn main() {}