Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: giel+gcc at mortis dot eu
Target Milestone: ---
Created attachment 43089
--> https://gcc.gnu.org/bugzilla/attachment.
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: giel+gcc at mortis dot eu
Target Milestone: ---
Created attachment 59845
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=59845&action=edit
repro
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118014
--- Comment #1 from Giel ---
While different from PR104177 I believe that Arsen's patch for that would also
solve this bug: [PATCH 2/2] c++/coroutines: handle (new-)extended alignment
[PR104177]
(https://gcc.gnu.org/pipermail/gcc-patches/2024-Se
ion member)
Product: gcc
Version: 14.2.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: giel+gcc at mortis dot eu
Target Milestone: ---
Created attach
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116952
Giel changed:
What|Removed |Added
CC||giel+gcc at mortis dot eu
--- Comment #3 from
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116952
--- Comment #4 from Giel ---
Also taking `decltype()` to convert it to a type-param doesn't
help (Clang still accepts it):
```
template
concept A = F()();
template T>
constexpr auto fun(T) {}
```