https://gcc.gnu.org/bugzilla/show_bug.cgi?id=125272
Drea Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
See Also| |https://gcc.gnu.org/bugzill
| |a/show_bug.cgi?id=24847
--- Comment #1 from Drea Pinski <pinskia at gcc dot gnu.org> ---
Reduced form:
```
template <int T>
class A {
A(A<0>) requires (T!=0){}
};
```
