OSDN Git Service

PR c++/53549
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / array14.C
1 // PR c++/23993
2
3 const int data[2][4] = {
4   { 0, 1, 2, 3 }
5 };
6
7 template <typename T>
8 void t(int k) {
9   int candidate = data[1][k];
10 }