Home | History | Annotate | Download | only in Parser

Lines Matching refs:constexpr

6 auto XL0 = [] constexpr { }; //expected-error{{requires '()'}} expected-error{{expected body}}
12 auto XL2 = [] () constexpr mutable constexpr { }; //expected-error{{cannot appear multiple times}}
13 auto L = []() mutable constexpr { };
14 auto L2 = []() constexpr { };
15 auto L4 = []() constexpr mutable { };
16 auto XL16 = [] () constexpr
18 constexpr //expected-error{{cannot appear multiple times}}
21 constexpr //expected-error{{cannot appear multiple times}}
22 constexpr //expected-error{{cannot appear multiple times}}
26 auto L = []() mutable constexpr {return 0; }; //expected-warning{{is a C++1z extension}}
27 auto L2 = []() constexpr { return 0;};//expected-warning{{is a C++1z extension}}
28 auto L4 = []() constexpr mutable { return 0; }; //expected-warning{{is a C++1z extension}}