blob: b43ffc33b40897a7f381dcf2bdc5a1c60311a190 [file] [log] [blame]
// PR c++/51738
// { dg-do compile { target c++11 } }
struct Index
{
Index(unsigned, unsigned){ }
};
struct Matrix
{
void operator[](Index){ }
};
int main()
{
Matrix m;
m[{0,1}];
}