aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/lambda/lambda-conv6.C
blob: 3b3fda9f94691031277c84e718d31fca5580088d (plain)
1
2
3
4
5
6
// PR c++/55015
// { dg-do link { target c++11 } }

typedef void (*VoidFunc)();
inline VoidFunc GetFunc() { return [](){}; }
int main() { VoidFunc func = GetFunc(); }