What part of the C++ specification restricts argument dependent lookup from finding function templates in the set of associated namespaces? In other words, why does the last call in main below fail to compile?
namespace ns {
struct foo {};
template<int i> void frob(foo const&) {}
void non_template(foo const&) {}
}
int main() {
ns::foo f;
non_template(f); // This is fine.
frob<0>(f); // This is not.
}
using namespace ns;or thens::qualification passes compilation. This is a good question. – fbrereto Jun 1 '10 at 22:37template<typename T> void bar(T) {}, ADL works fine,bar(f)succeeds. – sbi Jun 1 '10 at 22:45