(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
inherit/
access4.C
struct Container { int Count(); };
struct List : private Container {
    using Container::Count;
};
struct INetContentTypeParameterList : private List { void Clear(); };
void INetContentTypeParameterList::Clear() {
    Count();//Calling non static but in a non-static method.
}