A point from iso C++ n3290 :Argument dependant Name Lookup: section 3.4.2, para 4
When considering an associated namespace, the lookup is the same as the lookup
performed when the associated namespace is used as a qualifier (3.4.3.2) except
that:
— Any using-directives in the associated namespace are ignored.
— Any namespace-scope friend functions or **friend function templates** declared
in associated classes are visible within their respective namespaces even if
they are not visible during an ordinary lookup (11.3).
— All names except those of(possibly overloaded) functions and function
templates are ignored.
Here when compare to earlier 2003 satndard he added the 3rd point . can any one explain how it is possible ...expalin with an example ....(overloaded)..
Andalso he said that in the second point he included the friend function templates(i know noraml calss friend functions) ..can any one explain this thats show's that satatement .