index
:
vmime
master
VMime Mail Library
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
cmake
/
cmake-cxx11
/
Modules
/
CheckCXX11Features
/
cxx11-test-lambda.cpp
blob: 4c33ed58dd77439774cdf69c69a3dd33f7649cf7 (
plain
)
1
2
3
4
5
int
main
()
{
int
ret
=
0
;
return
([
&
ret
]()
->
int
{
return
ret
;
})();
}