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