template struct B { B() : m_i(42) {} private: int m_i; friend T; }; struct A { template int getBValue(B b) { return b.m_i; } }; void someFunc() { A a; B b; a.getBValue(b); }