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

gcc-bugs at marehr dot dialup.fu-berlin.de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gcc-bugs at marehr dot 
dialup.fu-b
                   |                            |erlin.de

--- Comment #1 from gcc-bugs at marehr dot dialup.fu-berlin.de ---
Is this a variant of the same ICE?

```
template <typename> bool a = true;
template <typename i> concept b = a<i>;
template <int> struct f { template <b c> friend auto g(c, f); };
auto d = f<1>{};
auto e = f<0>{};
```

https://godbolt.org/z/A5xXyR

Reply via email to