c0bc4ae12c1ae46e6130f37dffd60b0813e5ad36
[openbsd] /
1 #include <cstdio>
2 #include <string>
3 #include <vector>
4
5 // If we have libc++ 4.0 or greater we should have <variant>
6 // According to libc++ C++1z status page https://libcxx.llvm.org/cxx1z_status.html
7 #if _LIBCPP_VERSION >= 4000
8 #include <variant>
9 #define HAVE_VARIANT 1
10 #else
11 #define HAVE_VARIANT 0
12 #endif
13
14 struct S {
15   operator int() { throw 42; }
16 } ;
17
18
19 int main()
20 {
21     bool has_variant = HAVE_VARIANT ;
22
23     printf( "%d\n", has_variant ) ; // break here
24
25 #if HAVE_VARIANT == 1
26     std::variant<int, double, char> v1;
27     std::variant<int, double, char> &v1_ref = v1;
28     std::variant<int, double, char> v2;
29     std::variant<int, double, char> v3;
30     std::variant<std::variant<int,double,char>> v_v1 ;
31     std::variant<int, double, char> v_no_value;
32
33     v1 = 12; // v contains int
34     v_v1 = v1 ;
35     int i = std::get<int>(v1);
36     printf( "%d\n", i ); // break here
37
38     v2 = 2.0 ;
39     double d = std::get<double>(v2) ;
40     printf( "%f\n", d );
41
42     v3 = 'A' ;
43     char c = std::get<char>(v3) ;
44     printf( "%d\n", c );
45
46     // Checking v1 above and here to make sure we done maintain the incorrect
47     // state when we change its value.
48     v1 = 2.0;
49     d = std::get<double>(v1) ;
50     printf( "%f\n", d ); // break here
51
52      try {
53        v_no_value.emplace<0>(S());
54      } catch( ... ) {}
55
56      printf( "%zu\n", v_no_value.index() ) ;
57 #endif
58
59     return 0; // break here
60 }