blob: d80d88aeaa327e1cf3f598c4d9ed14b8e98fc34b [file] [log] [blame]
// { dg-do compile { target c++11 } }
// c++/81124 ICE with inline namespace
namespace std {
inline namespace {
int to_string();
void to_string(int);
}
void to_string();
}
int std::to_string();