mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 14:20:06 -06:00
8 lines
151 B
C++
8 lines
151 B
C++
|
|
int func(int A, int B)
|
|
{
|
|
// Verify that we have at least c++14
|
|
auto mult_func = [](auto a, auto b) { return a * b; };
|
|
return mult_func(A, B);
|
|
}
|