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