1// PR c++/23993
2
3const int data[2][4] = {
4  { 0, 1, 2, 3 }
5};
6
7template <typename T>
8void t(int k) {
9  int candidate = data[1][k];
10}
11