1 2 3 4 5 6 7
// PR c++/55015 // { dg-do link } // { dg-options -std=c++11 } typedef void (*VoidFunc)(); inline VoidFunc GetFunc() { return [](){}; } int main() { VoidFunc func = GetFunc(); }