Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:b2

354 constexpr B &&b2 { { 3 }, { 4 } }; // expected-note {{temporary created here}}
355 static_assert(&b1 != &b2, "");
356 static_assert(&b1.a1 != &b2.a1, ""); // expected-error {{constant expression}} expected-note {{outside the expression that created the temporary}}
361 constexpr thread_local B b2 { { 1 }, { 2 } }; // expected-error {{constant expression}} expected-note {{reference to temporary}} expected-note {{here}}
366 static_assert(&b4 != &b2, "");
1736 bool b2 : 3;
1742 static_assert(a.b == 0 && a.u == 1 && a.n == -1 && a.b2 == 0 &&