<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/106660>106660</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
[clang] Invocation of NTTP pointer to explicit this member function is rejected
</td>
</tr>
<tr>
<th>Labels</th>
<td>
clang
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
vasama
</td>
</tr>
</table>
<pre>
https://godbolt.org/z/75vxezzoW
```CPP
C:\Users\vasama\sandbox λ cat test.cpp
struct s
{
void f(this s&);
};
template<auto F>
constexpr void f(s& x)
{
return F(x);
}
int main()
{
&f<&s::f>;
}
C:\Users\vasama\sandbox λ clang --version
clang version 18.1.8
Target: x86_64-pc-windows-msvc
Thread model: posix
InstalledDir: C:\Program Files\LLVM\bin
C:\Users\vasama\sandbox λ clang -std=c++23 test.cpp
test.cpp:9:9: error: must explicitly qualify name of member function when taking its address
9 | return F(x);
| ^
| s::
test.cpp:14:3: note: in instantiation of function template specialization 'f<&s::f>' requested here
14 | &f<&s::f>;
| ^
test.cpp:14:2: warning: expression result unused [-Wunused-value]
14 | &f<&s::f>;
| ^~~~~~~~~
1 warning and 1 error generated.
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJysVU9v47YT_TTjy8CGRImyfdDBliNggf39kEPaPRaUOJLZUqSWpBwnh372Qn8Sb71ptygq2DRNDh_fGz6OhPeqNUQ58CPw00oM4WxdfhFedGJVWfmSn0PoPSQHYCWwsrWysjpsrGuBla_Ayi2_XOn11X6B6ATRYWmzaP4Uj4_zSDFC8OInT84DL-YdgBdeGFnZK0LxAMcj1iJgIB82dd_PC31wQx3QL8Db49zB5blYJbEBtgtn5dEDy4DtITm-hZ9u_akN1PVaBIKkEEOwWELyMM_U1vhA197dMEc4vI6AH2_uKAzOYAlsd73f9ps9lQnYCWWA7f4aC1jWQFIAy6ZsJ4dmZPYd4j_NoxamxfX6Qs4raxaF0-AyhPFuE29288yTcC0FSA543WW_ZOm6r9fPykj77Nedv9RL1NmRkNhZSXqM7a1X13nqk_FBaE3ypNw4tdB8dLZ1osNSaRrpfv788_-AF5Uy_0aNDxKSUw3sCOzIkjujvP9LDvvli-Scnfh0gw9I116rWgX9gl8HoVXzgkZ0hLbBjrqKHDaDqcOYnOczGQziN2VaVMGjkNKR97cj2yNsC_yREZaj_Sby7bT5ww8iFhd8py1OITkkoyZjRxsfUBlUY_pNUGIib5ubkDe_o--pVkKr1zkG2PYDu7EtOvo6kA8k8UyO3knG6Z9I_r1bPxD1LvheChslPAtnlGmnI7v2Y6ZHjo78oAMOZvAkEfhx_WXury9CDwT89F_RA_7w-_LMIfEbJRRGYjwbCVsy5EQgubkrcyuZJ3Kf7MWK8njL0v0-ziK-Oud8u9s2kvMsjSpWc7bj2zoWWVbVrMqoEiuVs4il0S6JopRFEd_UPIp5EyVNtJepyCSkEXVC6Y3Wl26suyvl_UB5HGVZFq20qEj7qX4zNt0TYGws5S4fF6yrofWQRlr54G8QQQU9Ff15BT_hJ3Ox9bt9_v_09Ii9VSaQw2Dfbw5OVfb-siiPjn6lOpBcDU7fvzJUOA_VprYdsHJksPyse2fHRcDKSZEHVi6iLjn7IwAA__9r8-Yo">