Lines Matching defs:be
21 // Compound-statements can be used in constexpr functions.
25 // Types can be defined in constexpr functions.
39 // Variables can be declared in constexpr functions.
58 // if-statements can be used in constexpr functions.
79 // There can be 0 return-statements.
168 constexpr bool equal(Iterator1 a, Iterator1 ae, Iterator2 b, Iterator2 be) {
169 while (a != ae && b != be)
172 return a == ae && b == be;
1037 // they were `constexpr` when folding, but it should not be allowed in normal
1044 constexpr int S = sum(Cs); // expected-error{{must be initialized by a constant expression}} expected-note{{in call}}
1200 // A constructor can be invoked for a const, volatile or const volatile
1218 constexpr B bad(true); // expected-error {{must be initialized by a constant expression}} expected-note {{in call to 'B(true)'}}