sdkrystian wrote:

> Independent of the other issues, it looks like this also re-introduces #98878

@nico #98878 still occurs without this patch applied:
```cpp
struct A 
{
    void f();
};

template<typename T>
int g(T t)
{
    using U = A; // clang 18.1: 'warning: unused type alias 'U''
    t.U::f();
}
```

https://github.com/llvm/llvm-project/pull/98547
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to