* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / 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;