blob: a356ae2a0dbe89d05b9da05254fc211a9bafcae2 [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.
//
//===----------------------------------------------------------------------===//
// <string>
// basic_string& append(initializer_list<charT> il);
#include <string>
#include <cassert>
int main()
{
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
{
std::string s("123");
s.append({'a', 'b', 'c'});
assert(s == "123abc");
}
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
}