//===----------------------------------------------------------------------===// // // 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 // // void assign(initializer_list il); #include #include #include "min_allocator.h" #include "asan_testing.h" template void test ( Vec &v ) { v.assign({3, 4, 5, 6}); assert(v.size() == 4); assert(is_contiguous_container_asan_correct(v)); assert(v[0] == 3); assert(v[1] == 4); assert(v[2] == 5); assert(v[3] == 6); } int main() { { typedef std::vector V; V d1; V d2; d2.reserve(10); // no reallocation during assign. test(d1); test(d2); } { typedef std::vector> V; V d1; V d2; d2.reserve(10); // no reallocation during assign. test(d1); test(d2); } }