// { dg-do compile { target c++11 } } struct X { X() = default; template X(U...); }; struct Y { template Y(U...); }; #define SA(X) static_assert((X),#X) SA(__is_trivially_constructible(X)); SA(!__is_trivially_constructible(Y));