// (C) Copyright Eric Friedman 2002. Permission to copy, use, modify, sell and // distribute this software is granted provided this copyright notice appears // in all copies. This software is provided "as is" without express or implied // warranty, and with no claim as to its suitability for any purpose. // MACRO: BOOST_NO_USING_DECLARATION_OVERLOADS_FROM_TYPENAME_BASE // TITLE: using declaration function overloads from a typename base // DESCRIPTION: The compiler will not accept a using declaration // that brings a function from a typename used as a base class // into a derived class if functions of the same name // are present in the derived class. namespace boost_no_using_declaration_overloads_from_typename_base { struct base { static void f() { } }; template struct using_overloads_from_typename_base : Base { using Base::f; static T f(const T& t) { return t; } }; int test() { using_overloads_from_typename_base::f(); return using_overloads_from_typename_base::f(0); } }