]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/23_containers/list/modifiers/emplace/92878_92947.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / list / modifiers / emplace / 92878_92947.cc
1 // { dg-do run { target c++20 } }
2
3 // Copyright (C) 2020-2024 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
19
20 #include <list>
21 #include <testsuite_hooks.h>
22
23 struct aggressive_aggregate
24 {
25 int a;
26 int b;
27 };
28
29 void test_emplace_front()
30 {
31 std::list<aggressive_aggregate> x;
32 x.emplace_front(1, 2);
33 VERIFY(x.front().a == 1);
34 VERIFY(x.front().b == 2);
35 x.emplace_front(1);
36 VERIFY(x.front().a == 1);
37 VERIFY(x.front().b == 0);
38 x.emplace_front();
39 VERIFY(x.front().a == 0);
40 VERIFY(x.front().b == 0);
41 }
42
43 void test_emplace_back()
44 {
45 std::list<aggressive_aggregate> x;
46 x.emplace_back(1, 2);
47 VERIFY(x.back().a == 1);
48 VERIFY(x.back().b == 2);
49 x.emplace_back(1);
50 VERIFY(x.back().a == 1);
51 VERIFY(x.back().b == 0);
52 x.emplace_back();
53 VERIFY(x.back().a == 0);
54 VERIFY(x.back().b == 0);
55 }
56
57 void test_emplace()
58 {
59 std::list<aggressive_aggregate> x{{42, 666}};
60 auto y = x.emplace(x.begin(), 1, 2);
61 VERIFY(y->a == 1);
62 VERIFY(y->b == 2);
63 y = x.emplace(x.begin(), 1);
64 VERIFY(y->a == 1);
65 VERIFY(y->b == 0);
66 y = x.emplace(x.begin());
67 VERIFY(y->a == 0);
68 VERIFY(y->b == 0);
69 }
70
71
72 int main()
73 {
74 test_emplace_front();
75 test_emplace_back();
76 test_emplace();
77 }