https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792
Andrew Pinski changed:
What|Removed |Added
Resolution|--- |FIXED
Status|NEW
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792
Martin Liška changed:
What|Removed |Added
CC||marxin at gcc dot gnu.org
Keywo
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792
Andrew Pinski changed:
What|Removed |Added
Known to work||7.1.0, 8.1.0
Keywords|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792
--- Comment #3 from Jonathan Wakely ---
The minimal example from an SO answer:
template
struct S {
template static void f();
S() { void(*g)(char) = [](auto) { f<0>; }; }
};
S<0> s;
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792
Jonathan Wakely changed:
What|Removed |Added
Keywords||rejects-valid
Status|UNCON
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77792
--- Comment #1 from Michele Caini ---
See also this question on SO: http://stackoverflow.com/q/39766467/4987285