diff options
author | Oleksandr T. <oleksandr.tarasiuk@outlook.com> | 2025-07-10 18:13:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-10 18:13:44 +0300 |
commit | 9ef0a886e621eb4202f82054983c383fa82aff9a (patch) | |
tree | 2ef0bae12fd87e2dd5ab11a47d710527e178b903 /llvm/lib/FileCheck/FileCheckImpl.h | |
parent | 4453792e8dbd861a5857b3bbe56fa73d2fdbbe39 (diff) | |
download | llvm-9ef0a886e621eb4202f82054983c383fa82aff9a.zip llvm-9ef0a886e621eb4202f82054983c383fa82aff9a.tar.gz llvm-9ef0a886e621eb4202f82054983c383fa82aff9a.tar.bz2 |
[Clang] fixed false positive redeclaration error for using enum in nested scopes (#147711)
Fixes #147495
---
This patch addresses the issue of false-positive redeclaration errors
that occur for `using enum` declarations in nested class scopes
```cpp
struct S {
enum class E { A };
using enum E;
struct S1 {
using enum E; // no error
};
};
```
Diffstat (limited to 'llvm/lib/FileCheck/FileCheckImpl.h')
0 files changed, 0 insertions, 0 deletions