Rebase.
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / forward / f_neg.cc
blobc4914f0f7762b0ab8a7b7f898a054810876a9166
1 // { dg-do compile }
2 // { dg-options "-std=gnu++0x" }
4 // Copyright (C) 2010-2014 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.
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.
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/>.
21 // { dg-error "static assertion failed" "" { target *-*-* } 89 }
23 #include <utility>
25 template <class T>
26 struct C
28 T t_;
30 C() {}
32 explicit C(const T& t) : t_(t) { }
34 template <class U,
35 class = typename std::enable_if
37 std::is_convertible<U, T>::value
38 >::type>
39 C(C<U>&& c) : t_(std::forward<T>(c.t_)) { }
42 class B;
44 class A
46 int data_;
48 friend class B;
49 public:
50 explicit
51 A(int data = 1)
52 : data_(data) { }
54 ~A() { data_ = -1; }
56 void test() const
58 __builtin_abort();
62 class B
64 int data_;
65 public:
66 explicit
67 B(int data = 1)
68 : data_(data) { }
70 B(const A& a) : data_(a.data_) { }
72 B(A&& a) : data_(a.data_) { a.data_ = 100; }
74 ~B() { data_ = -1; }
76 void test() const
78 __builtin_abort();
82 // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2951.html
83 // Test F.
84 int main()
86 A a(3);
87 C<A> ca(a);
88 C<const B&> cb(std::move(ca));
89 cb.t_.test();