https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111008
--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
A related non-lambda testcase:
```
struct b{int a;};
template<b>struct F1{};
F1<b{(1>0)}> a;
F1<b{1>0}> a0;
```
pinskia at gcc dot gnu.org via Gcc-bugs Sun, 13 Aug 2023 15:22:37 -0700
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111008
--- Comment #3 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
A related non-lambda testcase:
```
struct b{int a;};
template<b>struct F1{};
F1<b{(1>0)}> a;
F1<b{1>0}> a0;
```