Lines Matching full:mutable
14 auto XL1 = []() mutable //
15 mutable // expected-error{{cannot appear multiple times}}
16 mutable {}; // expected-error{{cannot appear multiple times}} in __anon2b446f440102()
19 auto XL2 = [] () constexpr mutable constexpr { }; //expected-error{{cannot appear multiple times}} in __anon2b446f440202()
20 auto L = []() mutable constexpr { }; in __anon2b446f440302()
22 auto L4 = []() constexpr mutable { }; in __anon2b446f440502()
24 mutable
26 mutable //expected-error{{cannot appear multiple times}}
27 mutable //expected-error{{cannot appear multiple times}}
33 auto L = []() mutable constexpr {return 0; }; //expected-warning{{is a C++17 extension}} in __anon2b446f440702()
35 auto L4 = []() constexpr mutable { return 0; }; //expected-warning{{is a C++17 extension}} in __anon2b446f440902()