Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: mawww at kakoune dot org
Target Milestone: ---
The following code
```
template
void func() {
auto lambda = [&](auto&& s) { F(s); };
lambda(0);
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91465
Maxime Coste changed:
What|Removed |Added
CC||mawww at kakoune dot org
--- Comment #7
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: mawww at kakoune dot org
Target Milestone: ---
Hello on current trunk, with no special options given, compiling the following
code:
struct Temp{ ~Temp(); };
struct A{ A(const
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89217
--- Comment #1 from Maxime Coste ---
Forgot to mention that this is a regression since gcc 8.2.1 which compiles this
code fine. It fails on gcc trunk r268563.
: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: mawww at kakoune dot org
Target Milestone: ---
Created attachment 45613
--> https://gcc.gnu.org/bugzilla/attachment.cgi?id=45613&action=edit
Source file that t
Priority: P3
Component: tree-optimization
Assignee: unassigned at gcc dot gnu.org
Reporter: mawww at kakoune dot org
Target Milestone: ---
The following code:
struct Int
{
constexpr Int(int value) : m_value(value) {}
constexpr friend Int operator+(Int lhs