27 lines
594 B
C++
Raw Normal View History

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