Implement lambda capture of *this.
struct A {
int d = 10; auto foo() { return [*this] (auto a) mutable { d+=a; return d; }; }
};
auto L = A{}.foo(); // A{}'s lifetime is gone.
// Below is still ok, because *this was captured by value.
assert(L(10) == 20);
assert(L(100) == 120);
"by VLA capture" -> "capture of a VLA type"?