Lines Matching refs:DestructorBCE
144 struct DestructorBCE { struct
146 constexpr DestructorBCE(int n) : n(n) {} in DestructorBCE() argument
147 constexpr ~DestructorBCE() { in ~DestructorBCE() argument
154 DestructorBCE global_dtor_bce_1(101);
160 DestructorBCE global_dtor_bce_2(not_constexpr);
163 constexpr DestructorBCE global_dtor_bce_3(103);
173 DestructorBCE local(201); in test_dtor_bce_1()
183 DestructorBCE local(not_constexpr); in test_dtor_bce_2()
193 constexpr DestructorBCE local(203); in test_dtor_bce_3()
205 static DestructorBCE local(301); in test_dtor_bce_static_1()
213 static DestructorBCE local(not_constexpr); in test_dtor_bce_static_2()
222 static constexpr DestructorBCE local(303); in test_dtor_bce_static_3()