969b1304cdc4d429d4f5afb898e7640d51db0e2c
[platform/upstream/gcc48.git] / libstdc++-v3 / testsuite / 20_util / is_nothrow_copy_assignable / value.cc
1 // { dg-options "-std=gnu++0x" }
2 // 2010-06-08  Paolo Carlini  <paolo.carlini@oracle.com>
3 //
4 // Copyright (C) 2010-2013 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library.  This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3.  If not see
19 // <http://www.gnu.org/licenses/>.
20
21 #include <type_traits>
22 #include <testsuite_hooks.h>
23 #include <testsuite_tr1.h>
24
25 void test01()
26 {
27   bool test __attribute__((unused)) = true;
28   using std::is_nothrow_copy_assignable;
29   using namespace __gnu_test;
30
31   // Positive tests.
32   VERIFY( (test_property<is_nothrow_copy_assignable, int>(true)) );
33   VERIFY( (test_property<is_nothrow_copy_assignable, float>(true)) );
34   VERIFY( (test_property<is_nothrow_copy_assignable, EnumType>(true)) );
35   VERIFY( (test_property<is_nothrow_copy_assignable, int*>(true)) );
36   VERIFY( (test_property<is_nothrow_copy_assignable, int(*)(int)>(true)) );
37   VERIFY( (test_property<is_nothrow_copy_assignable,
38            int (ClassType::*)>(true)) );
39   VERIFY( (test_property<is_nothrow_copy_assignable,
40            int (ClassType::*) (int)>(true)) );
41
42   VERIFY( (test_property<is_nothrow_copy_assignable,
43            NoexceptCopyAssignClass>(true)) );
44
45   // Negative tests.
46   VERIFY( (test_property<is_nothrow_copy_assignable, void>(false)) );
47   VERIFY( (test_property<is_nothrow_copy_assignable, int[2]>(false)) );
48   VERIFY( (test_property<is_nothrow_copy_assignable, float[][3]>(false)) );
49   VERIFY( (test_property<is_nothrow_copy_assignable,
50            EnumType[2][3][4]>(false)) );
51   VERIFY( (test_property<is_nothrow_copy_assignable, int*[3]>(false)) );
52   VERIFY( (test_property<is_nothrow_copy_assignable,
53            int(*[][2])(int)>(false)) );
54   VERIFY( (test_property<is_nothrow_copy_assignable,
55            int (ClassType::*[2][3])>(false)) );
56   VERIFY( (test_property<is_nothrow_copy_assignable, 
57            int (ClassType::*[][2][3]) (int)>(false)) );
58
59   VERIFY( (test_property<is_nothrow_copy_assignable,
60            ExceptCopyAssignClass>(false)) );
61   VERIFY( (test_property<is_nothrow_copy_assignable,
62            NoexceptMoveAssignClass>(false)) );
63   VERIFY( (test_property<is_nothrow_copy_assignable,
64            ExceptMoveAssignClass>(false)) );
65   VERIFY( (test_property<is_nothrow_copy_assignable,
66            DeletedCopyAssignClass>(false)) );
67   VERIFY( (test_property<is_nothrow_copy_assignable,
68            DeletedMoveAssignClass>(false)) );
69 }
70
71 int main()
72 {
73   test01();
74   return 0;
75 }