What's the scope of inline friend functions?
问题 After searching aroung SO, one question taught me that the lexical scope of an inline friend function is the class it\'s defined in, meaning it can access e.g. the typedef s in the class without qualifying them. But then I wondered what is the actual scope of such a function? GCC at least rejects all my attempts to call it. Can a function such as in the example ever be called through means other than ADL, which is not possible here thanks to no arguments? Standard quotations are appreciated,