1 2 3 4 5 6 7 8 9 10
void f(){ int i = 0; const auto j = [](int k){ return k+2; } (i); const auto l = ([](int k){ return k+2; }) (i); }