ref: 9c39deaf29a1e655ab9d7fd35e6c6f86dc621bb9 dir: /tests/execute/0162-array.c/
int arr[3] = {[2] = 2, [0] = 0, [1] = 1}; int main() { if(arr[0] != 0) return 1; if(arr[1] != 1) return 2; if(arr[2] != 2) return 3; return 0; }