https://gcc.gnu.org/bugzilla/show_bug.cgi?id=122832
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |c++26
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced:
```
template<typename T>
void foo(decltype(auto(T())) x) {}
int main() {
foo<int>(1);
}
```
