https://llvm.org/bugs/show_bug.cgi?id=24989
Richard Smith <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |FIXED --- Comment #4 from Richard Smith <[email protected]> --- Reduced to: auto x = [](auto){}; void (decltype(x)::*p)(int) const = &decltype(x)::operator(); Some of our C++11 lambda return type inference machinery was accidentally being used in C++14 mode (where we intend to just use normal 'auto' return type deduction). Fixed in r259609. -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ llvm-bugs mailing list [email protected] http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
