[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / ext / is_trivially_constructible3.C
blob02a678a8ab6f68b170cd8ca275c60376fb21407d
1 // { dg-do compile { target c++11 } }
3 template <class T, class... Args> void bar() {
4   static_assert(__is_trivially_constructible(T, Args...), "");
7 template void bar<int>();
8 template void bar<int,int>();