//===----------------------------------------------------------------------===// // // ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚThe LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // basic_string& operator+=(initializer_list il); #include #include int main() { #ifdef _LIBCPP_MOVE { std::string s("123"); s += {'a', 'b', 'c'}; assert(s == "123abc"); } #endif }