sdkrystian wrote:

@wlei-llvm Thank you! I've reduced the repro to this:
```cpp
struct A { };

template<typename T>
void f(A);

struct B {
  void f();

  void g() {
    f<int>(A());
  }
};
```

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

Reply via email to