(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lookup/
using42.C
// PR c++/30195
// { dg-do run }

template <class T>
struct B
{
    void foo(T) {}
};

template<class T>
struct Out
{
    struct D : B<T>, B<double>
    {
	using B<T>::foo;
	using B<double>::foo;
	void bar() { foo(3); }
    };
};

int main()
{
    Out<int>::D x;
    x.bar();
    return 0;
}