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.
64 lines
2.0 KiB
C++
64 lines
2.0 KiB
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
|
|
|
|
// <list>
|
|
|
|
// list(list&& c);
|
|
|
|
#include <list>
|
|
#include <cassert>
|
|
#include "MoveOnly.h"
|
|
#include "test_allocator.h"
|
|
#include "min_allocator.h"
|
|
|
|
int main()
|
|
{
|
|
{
|
|
std::list<MoveOnly, test_allocator<MoveOnly> > l(test_allocator<MoveOnly>(5));
|
|
std::list<MoveOnly, test_allocator<MoveOnly> > lo(test_allocator<MoveOnly>(5));
|
|
for (int i = 1; i <= 3; ++i)
|
|
{
|
|
l.push_back(i);
|
|
lo.push_back(i);
|
|
}
|
|
std::list<MoveOnly, test_allocator<MoveOnly> > l2 = std::move(l);
|
|
assert(l2 == lo);
|
|
assert(l.empty());
|
|
assert(l2.get_allocator() == lo.get_allocator());
|
|
}
|
|
{
|
|
std::list<MoveOnly, other_allocator<MoveOnly> > l(other_allocator<MoveOnly>(5));
|
|
std::list<MoveOnly, other_allocator<MoveOnly> > lo(other_allocator<MoveOnly>(5));
|
|
for (int i = 1; i <= 3; ++i)
|
|
{
|
|
l.push_back(i);
|
|
lo.push_back(i);
|
|
}
|
|
std::list<MoveOnly, other_allocator<MoveOnly> > l2 = std::move(l);
|
|
assert(l2 == lo);
|
|
assert(l.empty());
|
|
assert(l2.get_allocator() == lo.get_allocator());
|
|
}
|
|
{
|
|
std::list<MoveOnly, min_allocator<MoveOnly> > l(min_allocator<MoveOnly>{});
|
|
std::list<MoveOnly, min_allocator<MoveOnly> > lo(min_allocator<MoveOnly>{});
|
|
for (int i = 1; i <= 3; ++i)
|
|
{
|
|
l.push_back(i);
|
|
lo.push_back(i);
|
|
}
|
|
std::list<MoveOnly, min_allocator<MoveOnly> > l2 = std::move(l);
|
|
assert(l2 == lo);
|
|
assert(l.empty());
|
|
assert(l2.get_allocator() == lo.get_allocator());
|
|
}
|
|
}
|