cmake/Tests/CompileFeatures/cxx_lambda_init_captures.cpp

7 lines
89 B
C++
Raw Normal View History

2015-04-27 22:25:09 +02:00
int someFunc()
{
int a = 0;
2018-08-09 18:06:22 +02:00
return [b = static_cast<int&&>(a)]() { return b; }();
2015-04-27 22:25:09 +02:00
}