blob: 71a03f3bf30d9104df31f876faba3a8bf4342c03 [file] [log] [blame]
// PR c++/23993
const int data[2][4] = {
{ 0, 1, 2, 3 }
};
template <typename T>
void t(int k) {
int candidate = data[1][k];
}