https://gcc.gnu.org/bugzilla/show_bug.cgi?id=119537
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
See Also| |https://gcc.gnu.org/bugzill
| |a/show_bug.cgi?id=51088
--- Comment #4 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Sam James from comment #2)
> Clang crashes on this variant from the thread too:
> ```
> #include <stdio.h>
>
> int main() {
> goto *&&x;
> typeof(({x: puts("hi");}) ) nope;
> }
> ```