1 #include <type_traits>
main()2 int main() {
3   bool b = std::is_trivially_copy_constructible<int>::value;
4   (void) b;
5   return 0;
6 }
7