• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 // UNSUPPORTED: c++98, c++03
11 
12 // <string>
13 
14 // basic_string(initializer_list<charT> il, const Allocator& a = Allocator());
15 
16 #include <string>
17 #include <cassert>
18 
19 #include "test_allocator.h"
20 #include "min_allocator.h"
21 
main()22 int main()
23 {
24     {
25         std::string s = {'a', 'b', 'c'};
26         assert(s == "abc");
27     }
28     {
29         std::wstring s;
30         s = {L'a', L'b', L'c'};
31         assert(s == L"abc");
32     }
33     {
34         typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
35         S s = {'a', 'b', 'c'};
36         assert(s == "abc");
37     }
38     {
39         typedef std::basic_string<wchar_t, std::char_traits<wchar_t>, min_allocator<wchar_t>> S;
40         S s;
41         s = {L'a', L'b', L'c'};
42         assert(s == L"abc");
43     }
44 }
45