https://gcc.gnu.org/bugzilla/show_bug.cgi?id=115000

--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Reduced:
```
template<class T>
concept bool c = false;

template<c T>
struct ts{};
struct S {};
S s;
ts<S> t33{s};
```

Reply via email to