Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / array14.C
blob71a03f3bf30d9104df31f876faba3a8bf4342c03
1 // PR c++/23993
3 const int data[2][4] = {
4   { 0, 1, 2, 3 }
5 };
7 template <typename T>
8 void t(int k) {
9   int candidate = data[1][k];