http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43281
Andrey Zholos <aaz at althenia dot net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |aaz at althenia dot net --- Comment #5 from Andrey Zholos <aaz at althenia dot net> 2010-10-17 12:10:12 UTC --- This valid code triggers the new error message: template<typename T> struct A { int f(); void g() { auto x = f(), y = x; } };