Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / cpp0x / initlist25.C
blob8e5e0065cfc688a52fbc67174079a090cad1d775
1 // PR c++/41754
2 // { dg-options -std=c++0x }
3 // { dg-do run }
5 #include <map>
6 #include <string>
7 #include <iostream>
9 using namespace std;
11 int main()
13         map<string, string> m;
14         m.insert({{"t", "t"}, {"y", "y"}});
16         return 0;