blob: 596191beebc582a3c0e7406a4544d983416ce136 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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()
{
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
{
std::string s;
s = {'a', 'b', 'c'};
assert(s == "abc");
}
#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
}