Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / cpp0x / initlist25.C
blobdd41db1f641e127680a5ddbe777fc22c0f8fc7fb
1 // PR c++/41754
2 // { dg-do run { target c++11 } }
4 #include <map>
5 #include <string>
6 #include <iostream>
8 using namespace std;
10 int main()
12         map<string, string> m;
13         m.insert({{"t", "t"}, {"y", "y"}});
15         return 0;