ckandeler wrote:
Observation using clangd: In the following construct
```
namespace N { struct Foo{}; }
void f()
{
using namespace N;
Foo foo;
}
```
The "arcana" field of the AST node of "Foo" inside the function reports the
"QualType" as "Foo", whereas before it was "N::Foo". Is that expected?https://github.com/llvm/llvm-project/pull/147835 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
