Lines Matching full:mutable
7 auto XL1 = [] () mutable
8 mutable //expected-error{{cannot appear multiple times}}
9 mutable { }; //expected-error{{cannot appear multiple times}} in __anon56cb7dfc0102()
12 auto XL2 = [] () constexpr mutable constexpr { }; //expected-error{{cannot appear multiple times}} in __anon56cb7dfc0202()
13 auto L = []() mutable constexpr { }; in __anon56cb7dfc0302()
15 auto L4 = []() constexpr mutable { }; in __anon56cb7dfc0502()
17 mutable
19 mutable //expected-error{{cannot appear multiple times}}
20 mutable //expected-error{{cannot appear multiple times}}
26 auto L = []() mutable constexpr {return 0; }; //expected-warning{{is a C++1z extension}} in __anon56cb7dfc0702()
28 auto L4 = []() constexpr mutable { return 0; }; //expected-warning{{is a C++1z extension}} in __anon56cb7dfc0902()