7 lines
86 B
C++
7 lines
86 B
C++
|
|
int someFunc()
|
|
{
|
|
auto identity = [](auto a) { return a; };
|
|
return identity(0);
|
|
}
|