1 // { dg-do compile { target c++11 } } 2 // c++/81124 ICE with inline namespace 3 4 namespace std { 5 inline namespace { 6 int to_string(); 7 void to_string(int); 8 } 9 void to_string(); 10 } 11 int std::to_string(); 12