mirror of
https://github.com/reactos/CMake.git
synced 2025-02-19 02:57:51 +00:00
7 lines
86 B
C++
7 lines
86 B
C++
|
|
int someFunc()
|
|
{
|
|
auto identity = [](auto a) { return a; };
|
|
return identity(0);
|
|
}
|