1
0
Fork 0
arangodb/cmake/CheckCXX11Features/cxx11-test-tuple.cpp

11 lines
267 B
C++

#include <tuple>
int main () {
typedef std::tuple <int, double, long &, const char *> test_tuple;
long lengthy = 12;
test_tuple proof (18, 6.5, lengthy, "Ciao!");
lengthy = std::get<0>(proof);
std::get<3>(proof) = " Beautiful!";
return 0;
}