[Bug c++/78882] std::bind not working with templated function
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78882 Jonathan Wakely changed: What|Removed |Added Keywords||rejects-valid Status|UNCON
[Bug c++/78882] std::bind not working with templated function
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78882 --- Comment #1 from lcid-fire at gmx dot net --- Flags are -std=c++14 and the actual problem seems to be templates combined with auto: #include struct In { }; template auto anonymousWrap() { return T(); }; int main() { using namespace