Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
16c8ec8ec79a0039b31b0bb34798a2dbd4e3394c
/
.
/
Tests
/
CompileFeatures
/
cxx_generic_lambdas.cpp
blob: ae1b78edd81e675436850434657f6a7285f81d26 [
file
]
int
someFunc
()
{
auto
identity
=
[](
auto
a
)
{
return
a
;
};
return
identity
(
0
);
}