cxx_generic_lambdas.cpp 86 B

123456
  1. int someFunc()
  2. {
  3. auto identity = [](auto a) { return a; };
  4. return identity(0);
  5. }