cxx/test/utilities/tuple/tuple.tuple/tuple.elem/get_const.pass.cpp
Howard Hinnant bc8d3f97eb libcxx initial import
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@103490 91177308-0d34-0410-b5e6-96231b3b80d8
2010-05-11 19:42:16 +00:00

49 lines
1.3 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 <size_t I, class... Types>
// typename tuple_element<I, tuple<Types...> >::type const&
// get(const tuple<Types...>& t);
#include <tuple>
#include <string>
#include <cassert>
int main()
{
{
typedef std::tuple<int> T;
const T t(3);
assert(std::get<0>(t) == 3);
}
{
typedef std::tuple<std::string, int> T;
const T t("high", 5);
assert(std::get<0>(t) == "high");
assert(std::get<1>(t) == 5);
}
{
typedef std::tuple<double&, std::string, int> T;
double d = 1.5;
const T t(d, "high", 5);
assert(std::get<0>(t) == 1.5);
assert(std::get<1>(t) == "high");
assert(std::get<2>(t) == 5);
std::get<0>(t) = 2.5;
assert(std::get<0>(t) == 2.5);
assert(std::get<1>(t) == "high");
assert(std::get<2>(t) == 5);
assert(d == 2.5);
}
}