//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // void clear(); #include #include #include "min_allocator.h" int main() { { int a[] = {1, 2, 3}; std::list c(a, a+3); c.clear(); assert(c.empty()); } #if __cplusplus >= 201103L { int a[] = {1, 2, 3}; std::list> c(a, a+3); c.clear(); assert(c.empty()); } #endif }