blob: 3b3fda9f94691031277c84e718d31fca5580088d [file] [log] [blame]
// PR c++/55015
// { dg-do link { target c++11 } }
typedef void (*VoidFunc)();
inline VoidFunc GetFunc() { return [](){}; }
int main() { VoidFunc func = GetFunc(); }