Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
fd949f6e01251da1bc5eee4d34500a2556bef312
/
.
/
Tests
/
CompileFeatures
/
cxx_lambda_init_captures.cpp
blob: 7e337faf415f0aa6518fbda8ceb6cd0360d4b9ea [
file
]
int
someFunc
()
{
int
a
=
0
;
return
[
b
=
static_cast
<
int
&&>(
a
)]()
{
return
b
;
}();
}