Compiling the following:
void bar() { /* ... */ }
void foo()
{
struct MyStruct
{
friend void bar();
};
}
int main()
{
//..
}
results in the error:
error: friend declaration 'void bar()' in local class without prior declaration
Why does name lookup fail? How can I fix it?
error: friend declaration 'void bar()' in local class without prior declaration.– user1086635 Jan 3 at 21:37