c++: prvalue of array type [PR111286]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-alias5.C
blob70956c91838432564be31c0e762f0dea5ee55e00
1 // PR c++/103769
2 // { dg-do compile { target c++11 } }
3 // { dg-additional-options "--param=hash-table-verification-limit=1000" }
5 template <typename T> using t = T;
6 template <typename...> struct s {};
7 template <typename...Args> s<t<Args>...> f() { return {};}
9 int main() { f<void>(); }