mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-29 04:14:27 +00:00
7 lines
86 B
C++
7 lines
86 B
C++
|
|
int someFunc()
|
|
{
|
|
auto identity = [](auto a) { return a; };
|
|
return identity(0);
|
|
}
|