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