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