mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
35 lines
725 B
C++
35 lines
725 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();
|
|
|
|
#include <list>
|
|
#include <cassert>
|
|
|
|
#include "min_allocator.h"
|
|
|
|
int main()
|
|
{
|
|
{
|
|
int a[] = {1, 2, 3};
|
|
std::list<int> c(a, a+3);
|
|
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);
|
|
c.clear();
|
|
assert(c.empty());
|
|
}
|
|
#endif
|
|
}
|