c++: hash table ICE with variadic alias [PR105003]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist125.C
blob49dee1c0ccd25718f57f97d85dc24ea625c1eae9
1 // PR c++/102050
2 // { dg-do compile { target c++11 } }
4 #include <initializer_list>
6 struct A {
7   A(std::initializer_list<int> = {});
8 };
10 A x{0};
11 A y{1, 2, 3};
12 A z;