Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / bind / cv_quals.cc
blob4271cecb9d1e1c45b83a2b36ceabdb2d7b2463da
1 // Copyright (C) 2010-2013 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
7 // any later version.
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
18 // 20.7.11 Function template bind
20 // { dg-options "-std=gnu++0x" }
22 #include <functional>
23 #include <testsuite_hooks.h>
25 // target must be invoked with cv-quals of call wrapper
27 struct X
29 int operator()() { return 0; }
30 int operator()() const { return 1; }
31 int operator()() volatile { return 2; }
32 int operator()() const volatile { return 3; }
34 int operator()(int, int, int) { return 0; }
35 int operator()(int, int, int) const { return 1; }
36 int operator()(int, int, int) volatile { return 2; }
37 int operator()(int, int, int) const volatile { return 3; }
40 using std::placeholders::_1;
41 using std::placeholders::_2;
43 void test01()
45 bool test __attribute__((unused)) = true;
47 auto b0 = std::bind(X());
48 VERIFY( b0() == 0 );
50 const auto b1 = std::bind(X());
51 VERIFY( b1() == 1 );
53 volatile auto b2 = std::bind(X());
54 VERIFY( b2() == 2 );
56 const volatile auto b3 = std::bind(X());
57 VERIFY( b3() == 3 );
60 void test02()
62 bool test __attribute__((unused)) = true;
64 auto b0 = std::bind<int>(X());
65 VERIFY( b0() == 0 );
67 const auto b1 = std::bind<int>(X());
68 VERIFY( b1() == 1 );
70 volatile auto b2 = std::bind<int>(X());
71 VERIFY( b2() == 2 );
73 const volatile auto b3 = std::bind<int>(X());
74 VERIFY( b3() == 3 );
77 void test03()
79 bool test __attribute__((unused)) = true;
81 auto b0 = std::bind(X(), 0, _1, _2);
82 VERIFY( b0(0, 0) == 0 );
84 const auto b1 = std::bind(X(), _1, 0, _2);
85 VERIFY( b1(0, 0) == 1 );
87 volatile auto b2 = std::bind(X(), _1, _2, 0);
88 VERIFY( b2(0, 0) == 2 );
90 const volatile auto b3 = std::bind(X(), _1, 0, _2);
91 VERIFY( b3(0, 0) == 3 );
94 void test04()
96 bool test __attribute__((unused)) = true;
98 auto b0 = std::bind<int>(X(), 0, _1, _2);
99 VERIFY( b0(0, 0) == 0 );
101 const auto b1 = std::bind<int>(X(), _1, 0, _2);
102 VERIFY( b1(0, 0) == 1 );
104 volatile auto b2 = std::bind<int>(X(), _1, _2, 0);
105 VERIFY( b2(0, 0) == 2 );
107 const volatile auto b3 = std::bind<int>(X(), _1, 0, _2);
108 VERIFY( b3(0, 0) == 3 );
112 int main()
114 test01();
115 test02();
116 test03();
117 test04();
118 return 0;