Lines Matching full:mutable
24 (void)[*this]() mutable { ++x; }; in foo()
71 const auto &L = [*this](auto a) mutable { //expected-error{{call to deleted}} in foo()
95 auto L = [*this]() mutable { in foo()
107 auto M = [this]() mutable { in foo()
113 auto M2 = [*this]() mutable { in foo()
123 auto M = [this](auto b) mutable { in foo()
131 auto M2 = [*this](auto a) mutable { in foo()
138 return [=](auto a) mutable { M(a)(a); M2(a)(a); }; in foo()
144 auto L2 = [this]() mutable { in foo()
148 auto GL = [*this](auto a) mutable { in foo()
164 auto M = [*this]() mutable { in foo()
191 auto L = [*this]() mutable { in foo()
321 [*this]() mutable { f(this); }(); // expected-error {{call to deleted function}} in g()