blob: f095ffc82afdd1b442a2f064fe6e2f5501da3759 [file] [log] [blame]
// PR c++/85634
namespace bsl {
template <class T> void frob (const T *);
}
using namespace bsl;
template<class VALUE> void frob (const VALUE &);
template <typename T>
struct TPL {
friend void frob <T> (const T &);
};
TPL<int> x;