Hi,

On 10/09/2014 08:10 AM, Ville Voutilainen wrote:
Ok, another try (I don't have write-after-approval, so please commit the patch once you think it's ok):
Thanks Ville from me too. I'm taking care of the commit with a few very minor tweaks: 1- In new library testcases we are consistently using -std=gnu++11 and -std=gnu++14 (because the C++98 default is -std=gnu++98)
2- Uniform the dates to 2014-10-09.
3- Adjust the dg-error line numbers of 3 *_neg.cc testcases.

Thanks again,
Paolo.

////////////////
2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>

        PR libstdc++/60132
        * include/std/type_traits (is_trivially_copyable,
        is_trivially_constructible, is_trivially_default_constructible,
        is_trivially_copy_constructible, is_trivially_move_constructible,
        is_trivially_assignable, is_trivially_copy_assignable,
        is_trivially_move_assignable): New.
        * testsuite/20_util/is_trivially_assignable/requirements/
        typedefs.cc: Likewise.
        * testsuite/20_util/is_trivially_assignable/requirements/
        explicit_instantiation.cc: Likewise.
        * testsuite/20_util/is_trivially_assignable/value.cc: Likewise.
        * testsuite/20_util/is_trivially_constructible/requirements/
        typedefs.cc: Likewise.
        * testsuite/20_util/is_trivially_constructible/requirements/
        explicit_instantiation.cc: Likewise.
        * testsuite/20_util/is_trivially_constructible/value.cc: Likewise.
        * testsuite/20_util/is_trivially_copyable/requirements/
        typedefs.cc: Likewise.
        * testsuite/20_util/is_trivially_copyable/requirements/
        explicit_instantiation.cc: Likewise.
        * testsuite/20_util/is_trivially_copyable/value.cc: Likewise.
        * testsuite/20_util/is_trivially_copy_assignable/requirements/
        typedefs.cc: Likewise.
        * testsuite/20_util/is_trivially_copy_assignable/requirements/
        explicit_instantiation.cc: Likewise.
        * testsuite/20_util/is_trivially_copy_assignable/value.cc: Likewise.
        * testsuite/20_util/is_trivially_copy_constructible/requirements/
        typedefs.cc: Likewise.
        * testsuite/20_util/is_trivially_copy_constructible/requirements/
        explicit_instantiation.cc: Likewise.
        * testsuite/20_util/is_trivially_copy_constructible/value.cc: Likewise.
        * testsuite/20_util/is_trivially_default_constructible/requirements/
        typedefs.cc: Likewise.
        * testsuite/20_util/is_trivially_default_constructible/requirements/
        explicit_instantiation.cc: Likewise.
        * testsuite/20_util/is_trivially_default_constructible/
        value.cc: Likewise.
        * testsuite/20_util/is_trivially_move_assignable/requirements/
        typedefs.cc: Likewise.
        * testsuite/20_util/is_trivially_move_assignable/requirements/
        explicit_instantiation.cc: Likewise.
        * testsuite/20_util/is_trivially_move_assignable/value.cc: Likewise.
        * testsuite/20_util/is_trivially_move_constructible/requirements/
        typedefs.cc: Likewise.
        * testsuite/20_util/is_trivially_move_constructible/requirements/
        explicit_instantiation.cc: Likewise.
        * testsuite/20_util/is_trivially_move_constructible/value.cc:
        Likewise.
        * testsuite/20_util/declval/requirements/1_neg.cc: Adjust dg-error
        line number.
        * testsuite/20_util/make_signed/requirements/typedefs_neg.cc:
        Likewise.
        * testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc:
        Likewise.
Index: include/std/type_traits
===================================================================
--- include/std/type_traits     (revision 216027)
+++ include/std/type_traits     (working copy)
@@ -606,7 +606,11 @@
     : public integral_constant<bool, __is_trivial(_Tp)>
     { };
 
-  // is_trivially_copyable (still unimplemented)
+  // is_trivially_copyable
+  template<typename _Tp>
+    struct is_trivially_copyable
+    : public integral_constant<bool, __is_trivially_copyable(_Tp)>
+    { };
 
   /// is_standard_layout
   template<typename _Tp>
@@ -1282,20 +1286,59 @@
     : public __is_nt_move_assignable_impl<_Tp>
     { };
 
-  /// is_trivially_constructible (still unimplemented)
+  /// is_trivially_constructible
+  template<typename _Tp, typename... _Args>
+    struct is_trivially_constructible
+    : public __and_<is_constructible<_Tp, _Args...>, integral_constant<bool,
+                       __is_trivially_constructible(_Tp, _Args...)>>::type
+    { };
   
-  /// is_trivially_default_constructible (still unimplemented)
+  /// is_trivially_default_constructible
+  template<typename _Tp>
+    struct is_trivially_default_constructible
+    : public is_trivially_constructible<_Tp>::type
+    { };
 
-  /// is_trivially_copy_constructible (still unimplemented)
+  /// is_trivially_copy_constructible
+  template<typename _Tp>
+    struct is_trivially_copy_constructible
+    : public __and_<is_copy_constructible<_Tp>, 
+                   integral_constant<bool,
+                       __is_trivially_constructible(_Tp, const _Tp&)>>::type
+    { };
+  
+  /// is_trivially_move_constructible
+  template<typename _Tp>
+    struct is_trivially_move_constructible
+    : public __and_<is_move_constructible<_Tp>, 
+                   integral_constant<bool,
+                       __is_trivially_constructible(_Tp, _Tp&&)>>::type
+    { };
 
-  /// is_trivially_move_constructible (still unimplemented)
+  /// is_trivially_assignable
+  template<typename _Tp, typename _Up>
+    struct is_trivially_assignable
+    : public __and_<is_assignable<_Tp, _Up>, 
+                   integral_constant<bool,
+                       __is_trivially_assignable(_Tp, _Up)>>::type
+    { };
 
-  /// is_trivially_assignable (still unimplemented)
+  /// is_trivially_copy_assignable
+  template<typename _Tp>
+    struct is_trivially_copy_assignable
+    : public __and_<is_copy_assignable<_Tp>, 
+                   integral_constant<bool,
+                       __is_trivially_assignable(_Tp&, const _Tp&)>>::type
+    { };
 
-  /// is_trivially_copy_assignable (still unimplemented)
+  /// is_trivially_move_assignable
+  template<typename _Tp>
+    struct is_trivially_move_assignable
+    : public __and_<is_move_assignable<_Tp>, 
+                   integral_constant<bool,
+                       __is_trivially_assignable(_Tp&, _Tp&&)>>::type
+    { };
 
-  /// is_trivially_move_assignable (still unimplemented)
-
   /// is_trivially_destructible
   template<typename _Tp>
     struct is_trivially_destructible
Index: testsuite/20_util/declval/requirements/1_neg.cc
===================================================================
--- testsuite/20_util/declval/requirements/1_neg.cc     (revision 216027)
+++ testsuite/20_util/declval/requirements/1_neg.cc     (working copy)
@@ -19,7 +19,7 @@
 // with this library; see the file COPYING3.  If not see
 // <http://www.gnu.org/licenses/>.
 
-// { dg-error "static assertion failed" "" { target *-*-* } 2099 }
+// { dg-error "static assertion failed" "" { target *-*-* } 2142 }
 
 #include <utility>
 
Index: 
testsuite/20_util/is_trivially_assignable/requirements/explicit_instantiation.cc
===================================================================
--- 
testsuite/20_util/is_trivially_assignable/requirements/explicit_instantiation.cc
    (revision 0)
+++ 
testsuite/20_util/is_trivially_assignable/requirements/explicit_instantiation.cc
    (working copy)
@@ -0,0 +1,31 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+namespace std
+{
+  typedef short test_type;
+  template struct is_trivially_assignable<test_type, test_type>;
+}
Index: testsuite/20_util/is_trivially_assignable/requirements/typedefs.cc
===================================================================
--- testsuite/20_util/is_trivially_assignable/requirements/typedefs.cc  
(revision 0)
+++ testsuite/20_util/is_trivially_assignable/requirements/typedefs.cc  
(working copy)
@@ -0,0 +1,37 @@
+// { dg-options "-std=gnu++11" }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// 
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+// { dg-do compile }
+
+void test01()
+{
+  // Check for required typedefs
+  typedef std::is_trivially_assignable<int, int> test_type;
+  typedef test_type::value_type               value_type;
+  typedef test_type::type                     type;
+  typedef test_type::type::value_type         type_value_type;
+  typedef test_type::type::type               type_type;
+}
Index: testsuite/20_util/is_trivially_assignable/value.cc
===================================================================
--- testsuite/20_util/is_trivially_assignable/value.cc  (revision 0)
+++ testsuite/20_util/is_trivially_assignable/value.cc  (working copy)
@@ -0,0 +1,135 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+#include <type_traits>
+#include <testsuite_tr1.h>
+
+struct HasTemplateCAssign
+{
+  HasTemplateCAssign& operator=(const HasTemplateCAssign&) = default;
+  template <class T>
+  HasTemplateCAssign& operator=(T&&);
+};
+
+struct MoveOnly
+{
+  MoveOnly& operator=(MoveOnly&&) = default;
+};
+
+struct MoveOnly2
+{
+  MoveOnly2& operator=(MoveOnly2&&) = delete;
+};
+
+void test01()
+{
+  using std::is_trivially_assignable;
+  using namespace __gnu_test;
+
+  static_assert(test_property<is_trivially_assignable, 
+               int, int>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               int&, int>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               int&, int&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               int&, int&&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               int&, const int&>(true), "");
+
+  static_assert(test_property<is_trivially_assignable, 
+               TType, TType>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               TType&, TType>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               TType&, TType&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               TType&, TType&&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               TType&, const TType&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               PODType, PODType>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               NType&, NType&>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               SLType, SLType>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::Empty, assign::Empty>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::Abstract, assign::Abstract>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::Ellipsis, assign::Ellipsis>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::DelEllipsis, assign::DelEllipsis>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::Any, assign::Any>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::DelDef, assign::DelDef>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::DelCopy, assign::DelCopy>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::Nontrivial, assign::Nontrivial>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::AnyAssign, assign::AnyAssign>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::DelAnyAssign, assign::DelAnyAssign>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::DelCopyAssign, assign::DelCopyAssign>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::MO, assign::MO>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::MO, assign::MO&&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::MO, assign::MO&>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               assign::MO, const assign::MO&>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               CopyConsOnlyType, CopyConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               CopyConsOnlyType, const CopyConsOnlyType&>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               MoveConsOnlyType, MoveConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               MoveConsOnlyType, MoveConsOnlyType&&>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               HasTemplateCAssign, HasTemplateCAssign>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               HasTemplateCAssign, const HasTemplateCAssign&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               ClassType, DerivedType>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               ClassType, DerivedType&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               ClassType, DerivedType&&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               ClassType, const DerivedType&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               MoveOnly, MoveOnly>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               MoveOnly, MoveOnly&&>(true), "");
+  static_assert(test_property<is_trivially_assignable, 
+               MoveOnly, MoveOnly&>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               MoveOnly, const MoveOnly&>(false), "");
+  static_assert(test_property<is_trivially_assignable, 
+               MoveOnly2, MoveOnly2>(false), "");
+}
Index: 
testsuite/20_util/is_trivially_constructible/requirements/explicit_instantiation.cc
===================================================================
--- 
testsuite/20_util/is_trivially_constructible/requirements/explicit_instantiation.cc
 (revision 0)
+++ 
testsuite/20_util/is_trivially_constructible/requirements/explicit_instantiation.cc
 (working copy)
@@ -0,0 +1,31 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+namespace std
+{
+  typedef short test_type;
+  template struct is_trivially_constructible<test_type>;
+}
Index: testsuite/20_util/is_trivially_constructible/requirements/typedefs.cc
===================================================================
--- testsuite/20_util/is_trivially_constructible/requirements/typedefs.cc       
(revision 0)
+++ testsuite/20_util/is_trivially_constructible/requirements/typedefs.cc       
(working copy)
@@ -0,0 +1,37 @@
+// { dg-options "-std=gnu++11" }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// 
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+// { dg-do compile }
+
+void test01()
+{
+  // Check for required typedefs
+  typedef std::is_trivially_constructible<int> test_type;
+  typedef test_type::value_type               value_type;
+  typedef test_type::type                     type;
+  typedef test_type::type::value_type         type_value_type;
+  typedef test_type::type::type               type_type;
+}
Index: testsuite/20_util/is_trivially_constructible/value.cc
===================================================================
--- testsuite/20_util/is_trivially_constructible/value.cc       (revision 0)
+++ testsuite/20_util/is_trivially_constructible/value.cc       (working copy)
@@ -0,0 +1,168 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+#include <type_traits>
+#include <testsuite_tr1.h>
+
+struct HasTemplateCCtor
+{
+  HasTemplateCCtor(const HasTemplateCCtor&) = default;
+  template <class T>
+  HasTemplateCCtor(T&&);
+};
+
+struct MoveOnly
+{
+  MoveOnly(MoveOnly&&) = default;
+};
+
+struct MoveOnly2
+{
+  MoveOnly2(MoveOnly2&&) = delete;
+};
+
+void test01()
+{
+  using std::is_trivially_constructible;
+  using namespace __gnu_test;
+
+  static_assert(test_property<is_trivially_constructible, 
+               int>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               int, int>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               int, int&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               int, int&&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               int, const int&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PolymorphicClass>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PolymorphicClass, PolymorphicClass>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PolymorphicClass, PolymorphicClass&>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PolymorphicClass, PolymorphicClass&&>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PolymorphicClass, const PolymorphicClass&>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               TType>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               TType, TType>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               TType, TType&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               TType, TType&&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               TType, const TType&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               TType, int, int>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PODType>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PODType, PODType>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PODType, PODType&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PODType, PODType&&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PODType, const PODType&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               PODType, int, int>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               NType>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               SLType>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               LType>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               LType, int>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               construct::DelDef>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               construct::Abstract>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               construct::Ellipsis>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               construct::DelEllipsis>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               construct::Any>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               construct::DelCopy>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               construct::DelCopy, const construct::DelCopy&>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               construct::DelDtor>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               construct::Nontrivial>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               construct::UnusualCopy>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               CopyConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               CopyConsOnlyType, CopyConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               CopyConsOnlyType, CopyConsOnlyType&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               CopyConsOnlyType, CopyConsOnlyType&&>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               CopyConsOnlyType, const CopyConsOnlyType&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveConsOnlyType, MoveConsOnlyType>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveConsOnlyType, MoveConsOnlyType&>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveConsOnlyType, MoveConsOnlyType&&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveConsOnlyType, const MoveConsOnlyType&>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               ClassType, DerivedType>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               ClassType, DerivedType&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               ClassType, DerivedType&&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               ClassType, const DerivedType&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               HasTemplateCCtor>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               HasTemplateCCtor, HasTemplateCCtor>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               HasTemplateCCtor, const HasTemplateCCtor&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveOnly>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveOnly, MoveOnly>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveOnly, MoveOnly&>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveOnly, MoveOnly&&>(true), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveOnly, const MoveOnly&>(false), "");
+  static_assert(test_property<is_trivially_constructible, 
+               MoveOnly2>(false), "");
+
+
+}
Index: 
testsuite/20_util/is_trivially_copy_assignable/requirements/explicit_instantiation.cc
===================================================================
--- 
testsuite/20_util/is_trivially_copy_assignable/requirements/explicit_instantiation.cc
       (revision 0)
+++ 
testsuite/20_util/is_trivially_copy_assignable/requirements/explicit_instantiation.cc
       (working copy)
@@ -0,0 +1,31 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+namespace std
+{
+  typedef short test_type;
+  template struct is_trivially_copy_assignable<test_type>;
+}
Index: testsuite/20_util/is_trivially_copy_assignable/requirements/typedefs.cc
===================================================================
--- testsuite/20_util/is_trivially_copy_assignable/requirements/typedefs.cc     
(revision 0)
+++ testsuite/20_util/is_trivially_copy_assignable/requirements/typedefs.cc     
(working copy)
@@ -0,0 +1,37 @@
+// { dg-options "-std=gnu++11" }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// 
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+// { dg-do compile }
+
+void test01()
+{
+  // Check for required typedefs
+  typedef std::is_trivially_copy_assignable<int> test_type;
+  typedef test_type::value_type               value_type;
+  typedef test_type::type                     type;
+  typedef test_type::type::value_type         type_value_type;
+  typedef test_type::type::type               type_type;
+}
Index: testsuite/20_util/is_trivially_copy_assignable/value.cc
===================================================================
--- testsuite/20_util/is_trivially_copy_assignable/value.cc     (revision 0)
+++ testsuite/20_util/is_trivially_copy_assignable/value.cc     (working copy)
@@ -0,0 +1,92 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+#include <type_traits>
+#include <testsuite_tr1.h>
+
+struct HasTemplateCAssign
+{
+  HasTemplateCAssign& operator=(const HasTemplateCAssign&) = default;
+  template <class T>
+  HasTemplateCAssign& operator=(T&&);
+};
+
+struct MoveOnly
+{
+  MoveOnly& operator=(MoveOnly&&) = default;
+};
+
+struct MoveOnly2
+{
+  MoveOnly2& operator=(MoveOnly2&&) = delete;
+};
+
+void test01()
+{
+  using std::is_trivially_copy_assignable;
+  using namespace __gnu_test;
+
+  static_assert(test_property<is_trivially_copy_assignable, 
+               int>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               TType>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               PODType>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               NType>(false), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               SLType>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::Empty>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::Abstract>(false), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::Ellipsis>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::DelEllipsis>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::Any>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::DelDef>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::DelCopy>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::Nontrivial>(false), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::AnyAssign>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::DelAnyAssign>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::DelCopyAssign>(false), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               assign::MO>(false), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               CopyConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               MoveConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               HasTemplateCAssign>(true), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               MoveOnly>(false), "");
+  static_assert(test_property<is_trivially_copy_assignable, 
+               MoveOnly2>(false), "");
+}
Index: 
testsuite/20_util/is_trivially_copy_constructible/requirements/explicit_instantiation.cc
===================================================================
--- 
testsuite/20_util/is_trivially_copy_constructible/requirements/explicit_instantiation.cc
    (revision 0)
+++ 
testsuite/20_util/is_trivially_copy_constructible/requirements/explicit_instantiation.cc
    (working copy)
@@ -0,0 +1,31 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+namespace std
+{
+  typedef short test_type;
+  template struct is_trivially_copy_constructible<test_type>;
+}
Index: 
testsuite/20_util/is_trivially_copy_constructible/requirements/typedefs.cc
===================================================================
--- testsuite/20_util/is_trivially_copy_constructible/requirements/typedefs.cc  
(revision 0)
+++ testsuite/20_util/is_trivially_copy_constructible/requirements/typedefs.cc  
(working copy)
@@ -0,0 +1,37 @@
+// { dg-options "-std=gnu++11" }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// 
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+// { dg-do compile }
+
+void test01()
+{
+  // Check for required typedefs
+  typedef std::is_trivially_copy_constructible<int> test_type;
+  typedef test_type::value_type               value_type;
+  typedef test_type::type                     type;
+  typedef test_type::type::value_type         type_value_type;
+  typedef test_type::type::type               type_type;
+}
Index: testsuite/20_util/is_trivially_copy_constructible/value.cc
===================================================================
--- testsuite/20_util/is_trivially_copy_constructible/value.cc  (revision 0)
+++ testsuite/20_util/is_trivially_copy_constructible/value.cc  (working copy)
@@ -0,0 +1,86 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+#include <type_traits>
+#include <testsuite_tr1.h>
+
+struct HasTemplateCCtor
+{
+  HasTemplateCCtor(const HasTemplateCCtor&) = default;
+  template <class T>
+  HasTemplateCCtor(T&&);
+};
+
+struct MoveOnly
+{
+  MoveOnly(MoveOnly&&) = default;
+};
+
+struct MoveOnly2
+{
+  MoveOnly2(MoveOnly2&&) = delete;
+};
+
+void test01()
+{
+  using std::is_trivially_copy_constructible;
+  using namespace __gnu_test;
+
+  static_assert(test_property<is_trivially_copy_constructible, 
+               int>(true), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               TType>(true), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               PODType>(true), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               NType>(false), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               SLType>(false), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               construct::DelDef>(true), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               construct::Abstract>(false), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               construct::Ellipsis>(true), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               construct::DelEllipsis>(true), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               construct::Any>(true), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               construct::DelCopy>(false), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               construct::DelDtor>(false), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               construct::Nontrivial>(false), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               construct::UnusualCopy>(false), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               CopyConsOnlyType>(true), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               MoveConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               HasTemplateCCtor>(true), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               MoveOnly>(false), "");
+  static_assert(test_property<is_trivially_copy_constructible, 
+               MoveOnly2>(false), "");
+}
Index: 
testsuite/20_util/is_trivially_copyable/requirements/explicit_instantiation.cc
===================================================================
--- 
testsuite/20_util/is_trivially_copyable/requirements/explicit_instantiation.cc  
    (revision 0)
+++ 
testsuite/20_util/is_trivially_copyable/requirements/explicit_instantiation.cc  
    (working copy)
@@ -0,0 +1,31 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+namespace std
+{
+  typedef short test_type;
+  template struct is_trivially_copyable<test_type>;
+}
Index: testsuite/20_util/is_trivially_copyable/requirements/typedefs.cc
===================================================================
--- testsuite/20_util/is_trivially_copyable/requirements/typedefs.cc    
(revision 0)
+++ testsuite/20_util/is_trivially_copyable/requirements/typedefs.cc    
(working copy)
@@ -0,0 +1,37 @@
+// { dg-options "-std=gnu++11" }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// 
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+// { dg-do compile }
+
+void test01()
+{
+  // Check for required typedefs
+  typedef std::is_trivially_copyable<int> test_type;
+  typedef test_type::value_type               value_type;
+  typedef test_type::type                     type;
+  typedef test_type::type::value_type         type_value_type;
+  typedef test_type::type::type               type_type;
+}
Index: testsuite/20_util/is_trivially_copyable/value.cc
===================================================================
--- testsuite/20_util/is_trivially_copyable/value.cc    (revision 0)
+++ testsuite/20_util/is_trivially_copyable/value.cc    (working copy)
@@ -0,0 +1,86 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+#include <type_traits>
+#include <testsuite_tr1.h>
+
+struct HasTemplateCCtor
+{
+  HasTemplateCCtor(const HasTemplateCCtor&) = default;
+  template <class T>
+  HasTemplateCCtor(T&&);
+};
+
+struct MoveOnly
+{
+  MoveOnly(MoveOnly&&) = default;
+};
+
+struct MoveOnly2
+{
+  MoveOnly2(MoveOnly2&&) = delete;
+};
+
+void test01()
+{
+  using std::is_trivially_copyable;
+  using namespace __gnu_test;
+
+  static_assert(test_property<is_trivially_copyable, 
+               int>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               TType>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               PODType>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               NType>(false), "");
+  static_assert(test_property<is_trivially_copyable, 
+               SLType>(false), "");
+  static_assert(test_property<is_trivially_copyable, 
+               construct::DelDef>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               construct::Abstract>(false), "");
+  static_assert(test_property<is_trivially_copyable, 
+               construct::Ellipsis>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               construct::DelEllipsis>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               construct::Any>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               construct::DelCopy>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               construct::DelDtor>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               construct::Nontrivial>(false), "");
+  static_assert(test_property<is_trivially_copyable, 
+               construct::UnusualCopy>(false), "");
+  static_assert(test_property<is_trivially_copyable, 
+               CopyConsOnlyType>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               MoveConsOnlyType>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               HasTemplateCCtor>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               MoveOnly>(true), "");
+  static_assert(test_property<is_trivially_copyable, 
+               MoveOnly2>(true), "");
+}
Index: 
testsuite/20_util/is_trivially_default_constructible/requirements/explicit_instantiation.cc
===================================================================
--- 
testsuite/20_util/is_trivially_default_constructible/requirements/explicit_instantiation.cc
 (revision 0)
+++ 
testsuite/20_util/is_trivially_default_constructible/requirements/explicit_instantiation.cc
 (working copy)
@@ -0,0 +1,31 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+namespace std
+{
+  typedef short test_type;
+  template struct is_trivially_default_constructible<test_type>;
+}
Index: 
testsuite/20_util/is_trivially_default_constructible/requirements/typedefs.cc
===================================================================
--- 
testsuite/20_util/is_trivially_default_constructible/requirements/typedefs.cc   
    (revision 0)
+++ 
testsuite/20_util/is_trivially_default_constructible/requirements/typedefs.cc   
    (working copy)
@@ -0,0 +1,37 @@
+// { dg-options "-std=gnu++11" }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// 
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+// { dg-do compile }
+
+void test01()
+{
+  // Check for required typedefs
+  typedef std::is_trivially_default_constructible<int> test_type;
+  typedef test_type::value_type               value_type;
+  typedef test_type::type                     type;
+  typedef test_type::type::value_type         type_value_type;
+  typedef test_type::type::type               type_type;
+}
Index: testsuite/20_util/is_trivially_default_constructible/value.cc
===================================================================
--- testsuite/20_util/is_trivially_default_constructible/value.cc       
(revision 0)
+++ testsuite/20_util/is_trivially_default_constructible/value.cc       
(working copy)
@@ -0,0 +1,66 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+#include <type_traits>
+#include <testsuite_tr1.h>
+
+struct HasTemplateCtor
+{
+  HasTemplateCtor() = default;
+  template <class T>
+  HasTemplateCtor();
+};
+
+void test01()
+{
+  using std::is_trivially_default_constructible;
+  using namespace __gnu_test;
+
+  static_assert(test_category<is_trivially_default_constructible, 
+               int>(true), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               TType>(true), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               PODType>(true), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               NType>(false), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               SLType>(false), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               construct::DelDef>(false), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               construct::Abstract>(false), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               construct::Ellipsis>(false), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               construct::DelEllipsis>(false), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               construct::Any>(false), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               construct::DelCopy>(false), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               construct::DelDtor>(false), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               construct::Nontrivial>(false), "");
+  static_assert(test_category<is_trivially_default_constructible, 
+               HasTemplateCtor>(true), "");
+}
Index: 
testsuite/20_util/is_trivially_move_assignable/requirements/explicit_instantiation.cc
===================================================================
--- 
testsuite/20_util/is_trivially_move_assignable/requirements/explicit_instantiation.cc
       (revision 0)
+++ 
testsuite/20_util/is_trivially_move_assignable/requirements/explicit_instantiation.cc
       (working copy)
@@ -0,0 +1,31 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+namespace std
+{
+  typedef short test_type;
+  template struct is_trivially_move_assignable<test_type>;
+}
Index: testsuite/20_util/is_trivially_move_assignable/requirements/typedefs.cc
===================================================================
--- testsuite/20_util/is_trivially_move_assignable/requirements/typedefs.cc     
(revision 0)
+++ testsuite/20_util/is_trivially_move_assignable/requirements/typedefs.cc     
(working copy)
@@ -0,0 +1,37 @@
+// { dg-options "-std=gnu++11" }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// 
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+// { dg-do compile }
+
+void test01()
+{
+  // Check for required typedefs
+  typedef std::is_trivially_move_assignable<int> test_type;
+  typedef test_type::value_type               value_type;
+  typedef test_type::type                     type;
+  typedef test_type::type::value_type         type_value_type;
+  typedef test_type::type::type               type_type;
+}
Index: testsuite/20_util/is_trivially_move_assignable/value.cc
===================================================================
--- testsuite/20_util/is_trivially_move_assignable/value.cc     (revision 0)
+++ testsuite/20_util/is_trivially_move_assignable/value.cc     (working copy)
@@ -0,0 +1,92 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+#include <type_traits>
+#include <testsuite_tr1.h>
+
+struct HasTemplateCAssign
+{
+  HasTemplateCAssign& operator=(const HasTemplateCAssign&) = default;
+  template <class T>
+  HasTemplateCAssign& operator=(T&&);
+};
+
+struct MoveOnly
+{
+  MoveOnly& operator=(MoveOnly&&) = default;
+};
+
+struct MoveOnly2
+{
+  MoveOnly2& operator=(MoveOnly2&&) = delete;
+};
+
+void test01()
+{
+  using std::is_trivially_move_assignable;
+  using namespace __gnu_test;
+
+  static_assert(test_property<is_trivially_move_assignable, 
+               int>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               TType>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               PODType>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               NType>(false), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               SLType>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::Empty>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::Abstract>(false), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::Ellipsis>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::DelEllipsis>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::Any>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::DelDef>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::DelCopy>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::Nontrivial>(false), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::AnyAssign>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::DelAnyAssign>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::DelCopyAssign>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               assign::MO>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               CopyConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               MoveConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               HasTemplateCAssign>(false), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               MoveOnly>(true), "");
+  static_assert(test_property<is_trivially_move_assignable, 
+               MoveOnly2>(false), "");
+}
Index: 
testsuite/20_util/is_trivially_move_constructible/requirements/explicit_instantiation.cc
===================================================================
--- 
testsuite/20_util/is_trivially_move_constructible/requirements/explicit_instantiation.cc
    (revision 0)
+++ 
testsuite/20_util/is_trivially_move_constructible/requirements/explicit_instantiation.cc
    (working copy)
@@ -0,0 +1,31 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+namespace std
+{
+  typedef short test_type;
+  template struct is_trivially_move_constructible<test_type>;
+}
Index: 
testsuite/20_util/is_trivially_move_constructible/requirements/typedefs.cc
===================================================================
--- testsuite/20_util/is_trivially_move_constructible/requirements/typedefs.cc  
(revision 0)
+++ testsuite/20_util/is_trivially_move_constructible/requirements/typedefs.cc  
(working copy)
@@ -0,0 +1,37 @@
+// { dg-options "-std=gnu++11" }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// 
+// NB: This file is for testing type_traits with NO OTHER INCLUDES.
+
+#include <type_traits>
+
+// { dg-do compile }
+
+void test01()
+{
+  // Check for required typedefs
+  typedef std::is_trivially_move_constructible<int> test_type;
+  typedef test_type::value_type               value_type;
+  typedef test_type::type                     type;
+  typedef test_type::type::value_type         type_value_type;
+  typedef test_type::type::type               type_type;
+}
Index: testsuite/20_util/is_trivially_move_constructible/value.cc
===================================================================
--- testsuite/20_util/is_trivially_move_constructible/value.cc  (revision 0)
+++ testsuite/20_util/is_trivially_move_constructible/value.cc  (working copy)
@@ -0,0 +1,86 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+//
+// 2014-10-09  Ville Voutilainen  <ville.voutilai...@gmail.com>
+//
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+#include <type_traits>
+#include <testsuite_tr1.h>
+
+struct HasTemplateCCtor
+{
+  HasTemplateCCtor(const HasTemplateCCtor&) = default;
+  template <class T>
+  HasTemplateCCtor(T&&);
+};
+
+struct MoveOnly
+{
+  MoveOnly(MoveOnly&&) = default;
+};
+
+struct MoveOnly2
+{
+  MoveOnly2(MoveOnly2&&) = delete;
+};
+
+void test01()
+{
+  using std::is_trivially_move_constructible;
+  using namespace __gnu_test;
+
+  static_assert(test_property<is_trivially_move_constructible, 
+               int>(true), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               TType>(true), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               PODType>(true), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               NType>(false), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               SLType>(false), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               construct::DelDef>(true), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               construct::Abstract>(false), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               construct::Ellipsis>(true), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               construct::DelEllipsis>(true), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               construct::Any>(true), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               construct::DelCopy>(false), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               construct::DelDtor>(false), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               construct::Nontrivial>(false), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               construct::UnusualCopy>(false), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               CopyConsOnlyType>(false), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               MoveConsOnlyType>(true), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               HasTemplateCCtor>(false), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               MoveOnly>(true), "");
+  static_assert(test_property<is_trivially_move_constructible, 
+               MoveOnly2>(false), "");
+}
Index: testsuite/20_util/make_signed/requirements/typedefs_neg.cc
===================================================================
--- testsuite/20_util/make_signed/requirements/typedefs_neg.cc  (revision 
216027)
+++ testsuite/20_util/make_signed/requirements/typedefs_neg.cc  (working copy)
@@ -48,5 +48,5 @@
 // { dg-error "required from here" "" { target *-*-* } 40 }
 // { dg-error "required from here" "" { target *-*-* } 42 }
 
-// { dg-error "invalid use of incomplete type" "" { target *-*-* } 1764 }
-// { dg-error "declaration of" "" { target *-*-* } 1728 }
+// { dg-error "invalid use of incomplete type" "" { target *-*-* } 1807 }
+// { dg-error "declaration of" "" { target *-*-* } 1771 }
Index: testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc
===================================================================
--- testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc        
(revision 216027)
+++ testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc        
(working copy)
@@ -48,5 +48,5 @@
 // { dg-error "required from here" "" { target *-*-* } 40 }
 // { dg-error "required from here" "" { target *-*-* } 42 }
 
-// { dg-error "invalid use of incomplete type" "" { target *-*-* } 1667 }
-// { dg-error "declaration of" "" { target *-*-* } 1631 }
+// { dg-error "invalid use of incomplete type" "" { target *-*-* } 1710 }
+// { dg-error "declaration of" "" { target *-*-* } 1674 }

Reply via email to