LWG 1191
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@119545 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
30
test/utilities/tuple/tuple.tuple/tuple.elem/get_rv.pass.cpp
Normal file
30
test/utilities/tuple/tuple.tuple/tuple.elem/get_rv.pass.cpp
Normal file
@@ -0,0 +1,30 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||
// Source Licenses. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// <tuple>
|
||||
|
||||
// template <class... Types> class tuple;
|
||||
|
||||
// template <size_t I, class... Types>
|
||||
// typename tuple_element<I, tuple<Types...> >::type&&
|
||||
// get(tuple<Types...>&& t);
|
||||
|
||||
#include <tuple>
|
||||
#include <memory>
|
||||
#include <cassert>
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
typedef std::tuple<std::unique_ptr<int> > T;
|
||||
T t(std::unique_ptr<int>(new int(3)));
|
||||
std::unique_ptr<int> p = std::get<0>(std::move(t));
|
||||
assert(*p == 3);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user