auto test = [..](..){..};
和
const auto test = [..](..){..};
?
int x = 0; const auto test = [x]() mutable { ++x; }; test(); // error