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