c++: hash table ICE with variadic alias [PR105003]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-deduce2.C
blobdbf68a40c8567e45c9ed09f4f27a592a3b243f88
1 // Test for PR63149
2 // { dg-do compile { target c++11 } }
4 #include <initializer_list>
6 const auto r = { 1, 2, 3 };
7 using X = decltype(r);
8 using X = const std::initializer_list<int>;