f5256e16df
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103516 91177308-0d34-0410-b5e6-96231b3b80d8
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// <tuple>
|
|
|
|
// template <class... Types> class tuple;
|
|
|
|
// template<class... Types>
|
|
// tuple<VTypes...> make_tuple(Types&&... t);
|
|
|
|
#include <tuple>
|
|
#include <functional>
|
|
#include <cassert>
|
|
|
|
int main()
|
|
{
|
|
{
|
|
int i = 0;
|
|
float j = 0;
|
|
std::tuple<int, int&, float&> t = std::make_tuple(1, std::ref(i),
|
|
std::ref(j));
|
|
assert(std::get<0>(t) == 1);
|
|
assert(std::get<1>(t) == 0);
|
|
assert(std::get<2>(t) == 0);
|
|
i = 2;
|
|
j = 3.5;
|
|
assert(std::get<0>(t) == 1);
|
|
assert(std::get<1>(t) == 2);
|
|
assert(std::get<2>(t) == 3.5);
|
|
std::get<1>(t) = 0;
|
|
std::get<2>(t) = 0;
|
|
assert(i == 0);
|
|
assert(j == 0);
|
|
}
|
|
}
|