c++: hash table ICE with variadic alias [PR105003]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-array14.C
blobbaa4afc91fd5556117d8008b8ae3a9af5c6d79c3
1 // PR c++/104300
2 // { dg-do compile { target c++11 } }
4 struct ss {
5   char r;
6   ss();
7 };
8 struct a {
9   ss e[6];
11 a vv;
12 void ff() { vv = {}; }