Lines Matching full:mutable
10 auto LL2 = []() mutable {}; in __anon95e8947a0302()
18 auto L1 = [] mutable {}; in __anon95e8947a0502()
21 auto L3 = [] constexpr mutable {}; // cxx11-error {{return type 'void' is not a literal type}}
22 auto L4 = [] mutable constexpr {}; // cxx11-error {{return type 'void' is not a literal type}}
23 auto L5 = [] constexpr mutable noexcept {}; // cxx11-error {{return type 'void' is not a literal ty…
25 auto L6 = [s = 1] mutable {}; in __anon95e8947a0602()
27 auto L7 = [s = 1] constexpr mutable noexcept {}; // cxx11-error {{return type 'void' is not a liter…
44 auto XL0 = [] mutable constexpr mutable {}; // expected-error{{cannot appear multiple times}} cx…
45 auto XL1 = [] constexpr mutable constexpr {}; // expected-error{{cannot appear multiple times}} cx…
46 auto XL2 = []) constexpr mutable constexpr {}; // expected-error{{expected body of lambda expressio…
47 auto XL3 = []( constexpr mutable constexpr {}; // expected-error{{invalid storage class specifier}}…
64 auto XL8 = []() static mutable {}; // expected-error {{cannot be both mutable and static}} in __anon95e8947a0a02()