sdkrystian wrote:

@bgra8 Reduced to 
```cpp
template<typename T> 
struct A
{
    template<typename U> 
    auto f(U u) -> decltype(operator=(u));
};

template struct A<void>;
```
Seems like `f` is being set as invalid without any diagnostic... I think I can 
fix this quickly

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

Reply via email to