================
----------------
arrowten wrote:
@zwuis This change fixes the lookup behaviour for local classes inside function scope too. So the code
```
void f() {
struct A { struct B; };
struct A::B {};
B b;
}
```
is getting rejected.
https://github.com/llvm/llvm-project/pull/192678