Since a friend function can be declared in a local class as shown in the following example. How can it be used to access members of local class when it is defined in the function definition which cannot be accessed outside of it?
void foo()
{
void bar();
class MyClass
{
int x;
friend void bar();
};
}
void bar() { // error: cannot access local class here }
int main()
{
//..
}