PR c++/81589 - error with is_trivially_constructible
[official-gcc.git] / gcc / testsuite / g++.dg / ext / is_trivially_constructible6.C
blob10a8dfbb8f0b4eeba38179dc29ca3fc7cb9007e1
1 // PR c++/81589
3 template <typename k>
4 struct z {
5   z() {
6     k::error;
7   }
8 };
10 int x = __is_trivially_constructible(z<int>);