forked from mirror/libcxx
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
880 B
C++
33 lines
880 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: c++98, c++03
|
|
|
|
// <utility>
|
|
|
|
// template <class T1, class T2> struct pair
|
|
|
|
// template<size_t I, class T1, class T2>
|
|
// typename tuple_element<I, std::pair<T1, T2> >::type&&
|
|
// get(pair<T1, T2>&&);
|
|
|
|
#include <utility>
|
|
#include <memory>
|
|
#include <cassert>
|
|
|
|
int main()
|
|
{
|
|
{
|
|
typedef std::pair<std::unique_ptr<int>, short> P;
|
|
P p(std::unique_ptr<int>(new int(3)), static_cast<short>(4));
|
|
std::unique_ptr<int> ptr = std::get<0>(std::move(p));
|
|
assert(*ptr == 3);
|
|
}
|
|
}
|