//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // template // void swap(vector& x, vector& y); #if _LIBCPP_DEBUG >= 1 #define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0)) #endif #include #include #include "min_allocator.h" int main() { #if _LIBCPP_DEBUG >= 1 { int a1[] = {1, 3, 7, 9, 10}; int a2[] = {0, 2, 4, 5, 6, 8, 11}; std::vector c1(a1, a1+sizeof(a1)/sizeof(a1[0])); std::vector c2(a2, a2+sizeof(a2)/sizeof(a2[0])); std::vector::iterator i1 = c1.begin(); std::vector::iterator i2 = c2.begin(); swap(c1, c2); c1.erase(i2); c2.erase(i1); c1.erase(i1); assert(false); } #if __cplusplus >= 201103L { int a1[] = {1, 3, 7, 9, 10}; int a2[] = {0, 2, 4, 5, 6, 8, 11}; std::vector> c1(a1, a1+sizeof(a1)/sizeof(a1[0])); std::vector> c2(a2, a2+sizeof(a2)/sizeof(a2[0])); std::vector>::iterator i1 = c1.begin(); std::vector>::iterator i2 = c2.begin(); swap(c1, c2); c1.erase(i2); c2.erase(i1); c1.erase(i1); assert(false); } #endif #endif }