Searched refs:Derived3 (Results 1 – 8 of 8) sorted by relevance
95 struct Derived3 : ThrowingBase { struct96 Derived3() noexcept(true) = default; // expected-error {{does not match the calculated}}97 …Derived3(const Derived3&) noexcept(true) = default; // expected-error {{does not match the calcula…98 … Derived3(Derived3&&) noexcept(true) = default; // expected-error {{does not match the calculated}}99 …Derived3 &operator=(const Derived3&) noexcept(true) = default; // expected-error {{does not match …100 …Derived3 &operator=(Derived3&&) noexcept(true) = default; // expected-error {{does not match the c…101 ~Derived3() noexcept(true) = default; // expected-error {{does not match the calculated}}134 struct Derived3 : Base { struct142 static_assert(!noexcept(Derived3(X<0>())), "");
30 struct Derived3 : decltype(T().foo()) { }; struct32 Derived3<Foo> d;
145 …class Derived3 : // expected-error 2 {{inherited virtual base class 'Base<2>' has private destruct… class153 Derived3 d3; // expected-note {{implicit default constructor}}\184 class Derived3 : private Base { // expected-note {{constrained by private inheritance here}} \ class189 Private test1(Derived3 &d) { return d; } in test1()190 …Public test2(Derived3 &d) { return d; } // expected-error {{'operator Public' is a private member … in test2()
124 struct Derived3 : Base { struct141 expect<3>(Derived3().foo<int>()); in test()142 …expect<1>(Derived3().foo<0>()); // expected-error {{no matching member function for call to 'foo'}} in test()
114 struct Derived3: Derived1 { struct118 struct MostDerived: Derived3, Derived2 {
1424 class Derived3 : public Base2 { }; class1429 Derived3 mu3_;
1647 class Derived3 : virtual Derived2a, virtual Derived2b {}; class1674 { int arr[T(__is_base_of(Base, Derived3))]; } in is_base_of()1675 { int arr[T(__is_base_of(Derived, Derived3))]; } in is_base_of()1676 { int arr[T(__is_base_of(Derived2b, Derived3))]; } in is_base_of()1677 { int arr[T(__is_base_of(Derived2a, Derived3))]; } in is_base_of()
20 struct Derived3 : public Base { struct