blob: d30ca44695a833cdc7d7d4e7878ca029544be8f2 [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.
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// <string>
// basic_string& append(initializer_list<charT> il);
#include <string>
#include <cassert>
#include "test_macros.h"
#include "min_allocator.h"
int main()
{
{
std::string s("123");
s.append({'a', 'b', 'c'});
assert(s == "123abc");
}
{
typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
S s("123");
s.append({'a', 'b', 'c'});
assert(s == "123abc");
}
}