//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++98, c++03 // // basic_string& operator=(initializer_list il); #include #include #include "min_allocator.h" int main() { { std::string s; s = {'a', 'b', 'c'}; assert(s == "abc"); } { typedef std::basic_string, min_allocator> S; S s; s = {'a', 'b', 'c'}; assert(s == "abc"); } }