CMake/Tests/CompileFeatures/cxx_lambda_init_captures.cpp
Stephen Kelly dd043c3f21 Features: Add support for C++14 features.
Record the features implemented by GNU 4.9 and Clang 3.4.
2014-05-22 18:01:23 +02:00

7 lines
89 B
C++

int someFunc()
{
int a = 0;
return [b = static_cast<int&&>(a)]() { return b; }();
}