cxx/test/strings/basic.string/string.cons/initializer_list_assignment.pass.cpp
2010-05-11 21:36:01 +00:00

27 lines
584 B
C++

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