llvm-project
39ea9b71 - [Clang] Correctly handle taking the address of an explicit object member function template (#147046)

Commit
162 days ago
[Clang] Correctly handle taking the address of an explicit object member function template (#147046) When implementing #93430, I failed to consider some cases involving function templates. ``` struct A { template <typename T> void a(this T self); }; (&A::a<A>)(A{}); ``` This fixes that
Author
Parents
Loading