reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
#include <cstdio>
#include <string>
#include <vector>

// If we have libc++ 4.0 or greater we should have <variant>
// According to libc++ C++1z status page https://libcxx.llvm.org/cxx1z_status.html
#if _LIBCPP_VERSION >= 4000
#include <variant>
#define HAVE_VARIANT 1
#else
#define HAVE_VARIANT 0
#endif

struct S {
  operator int() { throw 42; }
} ;


int main()
{
    bool has_variant = HAVE_VARIANT ;

    printf( "%d\n", has_variant ) ; // break here

#if HAVE_VARIANT == 1
    std::variant<int, double, char> v1;
    std::variant<int, double, char> &v1_ref = v1;
    std::variant<int, double, char> v2;
    std::variant<int, double, char> v3;
    std::variant<std::variant<int,double,char>> v_v1 ;
    std::variant<int, double, char> v_no_value;

    v1 = 12; // v contains int
    v_v1 = v1 ;
    int i = std::get<int>(v1);
    printf( "%d\n", i ); // break here

    v2 = 2.0 ;
    double d = std::get<double>(v2) ;
    printf( "%f\n", d );

    v3 = 'A' ;
    char c = std::get<char>(v3) ;
    printf( "%d\n", c );

    // Checking v1 above and here to make sure we done maintain the incorrect
    // state when we change its value.
    v1 = 2.0;
    d = std::get<double>(v1) ;
    printf( "%f\n", d ); // break here

     try {
       v_no_value.emplace<0>(S());
     } catch( ... ) {}

     printf( "%zu\n", v_no_value.index() ) ;
#endif

    return 0; // break here
}