P4004R0 — Reconsider CWG 1395 "Partial ordering of variadic templates reconsidered"
Christof Meerwald
EWG
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); ```