FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cxx11-test-lambda.cpp
Go to the documentation of this file.
1 int main()
2 {
3  int ret = 0;
4  return ([&ret]() -> int { return ret; })();
5 }
int main(void)