blob: 04f95258999c12ee71c9ab8c6f65ad133933e6bb [file] [log] [blame]
struct S
{
template <typename T> void operator() (T) {}
};
namespace N
{
S s;
struct A {} a;
}
using N::s;
void f () { s(N::a); }