http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54798
Daniel Krügler <daniel.kruegler at googlemail dot com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |daniel.kruegler at | |googlemail dot com --- Comment #3 from Daniel Krügler <daniel.kruegler at googlemail dot com> 2012-10-03 21:20:01 UTC --- This happens also with gcc 4.8 HEAD. Further simplifications and removal of library dependencies: //------- void use(int){} template <typename U> class C { public: void f() { [&]() { use(_member); }(); } private: int _member; }; //------- After this reduction it looks like a dup of bug 53921 to me.