blob: 739dc936e405e8d010cd035f29b9b7b2a576bb18 [file] [log] [blame]
// PR c++/13594 (secondary)
// { dg-do compile }
namespace fool {
inline namespace foo {
template <class T> void swap(T, T);
}
template <class T> void swap(T);
}
int main() {
// we used to fail to look up the associated namespace here
fool::swap(1, 1);
}