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.
39 lines
823 B
C++
39 lines
823 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.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// <list>
|
|
|
|
// void clear() noexcept;
|
|
|
|
#include <list>
|
|
#include <cassert>
|
|
|
|
#include "test_macros.h"
|
|
#include "min_allocator.h"
|
|
|
|
int main()
|
|
{
|
|
{
|
|
int a[] = {1, 2, 3};
|
|
std::list<int> c(a, a+3);
|
|
ASSERT_NOEXCEPT(c.clear());
|
|
c.clear();
|
|
assert(c.empty());
|
|
}
|
|
#if TEST_STD_VER >= 11
|
|
{
|
|
int a[] = {1, 2, 3};
|
|
std::list<int, min_allocator<int>> c(a, a+3);
|
|
ASSERT_NOEXCEPT(c.clear());
|
|
c.clear();
|
|
assert(c.empty());
|
|
}
|
|
#endif
|
|
}
|