https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67017
Jonathan Wakely <redi at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |accepts-invalid
Status|UNCONFIRMED |NEW
Last reconfirmed| |2015-07-26
Ever confirmed|0 |1
--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to Anders Granlund from comment #3)
> > I think that is because type deduction for return types of functions was
> > introduced in c++14.
Yes, I understand why they reject it in C++11 mode, my point was that they all
consistently accept it in C++14 mode.
> I noticed an interesting thing however. Consider this program:
>
> auto i = 0, f();
> auto f() { return false; }
> int main() {}
>
> Clang accepts it, but GCC rejects it (I didn't try EDG).
EDG accepts that too.