cmake/Tests/CompileFeatures/cxx_generic_lambdas.cpp

7 lines
86 B
C++
Raw Normal View History

2015-04-27 22:25:09 +02:00
int someFunc()
{
auto identity = [](auto a) { return a; };
return identity(0);
}