PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / is_trivially_constructible5.C
blob15ea33675ed774d415a7da010d5604dd9a12f5ab
1 // PR c++/80991
2 // { dg-do compile { target c++11 } }
4 template<bool> void foo()
6   static_assert(__is_trivially_constructible(int, int), "");
9 void bar()
11   foo<true>();