1 struct Container { int Count(); };
2 struct List : private Container {
3 using Container::Count;
5 struct INetContentTypeParameterList : private List { void Clear(); };
6 void INetContentTypeParameterList::Clear() {
7 Count();//Calling non static but in a non-static method.