1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
struct S { template <typename T> void operator() (T) {} }; namespace N { S s; struct A {} a; } using N::s; void f () { s(N::a); }