P4004R1 — Reconsider CWG 1395 "Partial ordering of variadic templates reconsidered"
Christof Meerwald
CWG
Revisions R1Apr 2026R0Feb 2026
```cpp template<typename ... T> char *f(T &...); // #1 template<typename T> int *f(T &&); // #2 int i; auto *p = f(i); ```