OSDN Git Service

2012-12-15 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / initlist25.C
1 // PR c++/41754
2 // { dg-options -std=c++0x }
3 // { dg-do run }
4
5 #include <map>
6 #include <string>
7 #include <iostream>
8
9 using namespace std;
10
11 int main()
12 {
13         map<string, string> m;
14         m.insert({{"t", "t"}, {"y", "y"}});
15
16         return 0;
17 }