| Issue | 179443 |
|---|---|
| Summary | [clang-tidy] `misc-unused-using-decls` does not report decls inside a class/struct |
| Labels | clang-tidy, false-negative |
| Assignees | |
| Reporter | firewave |
```cpp
struct S
{
static void f() {}
};
struct T : public S
{
using S::f;
};
void func()
{
T t;
}
```
https://godbolt.org/z/exYPq1ffx
Maybe related: #46479
_______________________________________________ llvm-bugs mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
