]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/libstdc++-prettyprinters/libfundts.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / libstdc++-prettyprinters / libfundts.cc
1 // { dg-do run { target c++14 } }
2 // { dg-options "-g -O0" }
3
4 // Copyright (C) 2014-2023 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 <experimental/any>
22 #include <experimental/optional>
23 #include <experimental/string_view>
24 #include <string>
25 #include <map>
26 #include <iostream>
27
28 using std::experimental::any;
29 using std::experimental::optional;
30 using std::experimental::string_view;
31
32 int
33 main()
34 {
35 string_view str = "string";
36 // { dg-final { note-test str "\"string\"" } }
37
38 optional<int> o;
39 // { dg-final { note-test o {std::experimental::optional<int> [no contained value]} } }
40 optional<bool> ob{false};
41 // { dg-final { note-test ob {std::experimental::optional<bool> = {[contained value] = false}} } }
42 optional<int> oi{5};
43 // { dg-final { note-test oi {std::experimental::optional<int> = {[contained value] = 5}} } }
44 optional<void*> op{nullptr};
45 // { dg-final { note-test op {std::experimental::optional<void *> = {[contained value] = 0x0}} } }
46 optional<std::map<int, double>> om;
47 om = std::map<int, double>{ {1, 2.}, {3, 4.}, {5, 6.} };
48 // { dg-final { regexp-test om {std::experimental::optional<std::(__debug::)?map<int, double>> containing std::(__debug::)?map with 3 elements = {\[1\] = 2, \[3\] = 4, \[5\] = 6}} } }
49 optional<std::string> os{ "stringy" };
50 // { dg-final { note-test os {std::experimental::optional<std::string> = {[contained value] = "stringy"}} } }
51
52 any a;
53 // { dg-final { note-test a {std::experimental::any [no contained value]} } }
54 any ab(false);
55 // { dg-final { note-test ab {std::experimental::any containing bool = {[contained value] = false}} } }
56 any ai(6);
57 // { dg-final { note-test ai {std::experimental::any containing int = {[contained value] = 6}} } }
58 any ap = (void*)nullptr;
59 // { dg-final { note-test ap {std::experimental::any containing void * = {[contained value] = 0x0}} } }
60 any as = *os;
61 // { dg-final { note-test as {std::experimental::any containing std::string = {[contained value] = "stringy"}} } }
62 any as2("stringiest");
63 // { dg-final { regexp-test as2 {std::experimental::any containing const char \* = {\[contained value\] = 0x[[:xdigit:]]+ "stringiest"}} } }
64 any am = *om;
65 // { dg-final { regexp-test am {std::experimental::any containing std::(__debug::)?map with 3 elements = {\[1\] = 2, \[3\] = 4, \[5\] = 6}} } }
66
67 std::cout << "\n";
68 return 0; // Mark SPOT
69 }
70
71 // { dg-final { gdb-test SPOT } }