// PR c++/13594 (secondary)// { dg-options "" }// { dg-do compile }namespace fool {inlinenamespace foo {template<class T>voidswap(T, T);}template<class T>voidswap(T);}intmain() {// we used to fail to look up the associated namespace here
fool::swap(1,1);}