blob: d82dbccf614c5547a2a7a67321ff5a65e88b24c5 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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>
// iterator insert(const_iterator p, initializer_list<value_type> il);
#include <list>
#include <cassert>
int main()
{
#ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
std::list<int> d(10, 1);
std::list<int>::iterator i = d.insert(next(d.cbegin(), 2), {3, 4, 5, 6});
assert(d.size() == 14);
assert(i == next(d.begin(), 2));
i = d.begin();
assert(*i++ == 1);
assert(*i++ == 1);
assert(*i++ == 3);
assert(*i++ == 4);
assert(*i++ == 5);
assert(*i++ == 6);
assert(*i++ == 1);
assert(*i++ == 1);
assert(*i++ == 1);
assert(*i++ == 1);
assert(*i++ == 1);
assert(*i++ == 1);
assert(*i++ == 1);
assert(*i++ == 1);
#endif // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
}