#include <iostream> int main() { auto f0 = [](int x) { return ([=](int y) { return x + y; }); }; std::cout << f0(11)(22) << std::endl; }