Rebase.
[official-gcc.git] / libstdc++-v3 / testsuite / experimental / any / cons / 4.cc
blob6e5e01972e3b5f1b21cd75dbd75617bae5006242
1 // { dg-options "-std=gnu++14" }
2 // { dg-do run }
4 // Copyright (C) 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 #include <experimental/any>
22 #include <memory>
23 #include <testsuite_hooks.h>
25 using std::experimental::any;
27 struct NotSmall
29 char c[64]; // prevent small-object optimization
32 struct T1
34 using allocator_type = std::allocator<char>;
36 T1() = default;
37 T1(const T1&) : used_alloc(false) { }
38 T1(const T1&, const allocator_type&) : used_alloc(true) { }
40 bool used_alloc;
42 NotSmall x;
45 struct T2
47 using allocator_type = std::allocator<char>;
49 T2() = default;
50 T2(const T2&) : used_alloc(false) { }
51 T2(std::allocator_arg_t, const allocator_type&, const T2&) : used_alloc(true)
52 { }
54 bool used_alloc;
56 NotSmall x;
59 bool test [[gnu::unused]] = true;
61 void test01()
63 any x1(std::allocator_arg, std::allocator<char>{}, T1{});
64 VERIFY( std::experimental::any_cast<T1&>(x1).used_alloc );
66 any x2(std::allocator_arg, std::allocator<char>{}, T2{});
67 VERIFY( std::experimental::any_cast<T2&>(x2).used_alloc );
70 int main()
72 test01();