Lines Matching refs:Derived
79 struct Derived : ThrowingBase { struct
80 Derived() noexcept(false) = default;
81 Derived(const Derived&) noexcept(false) = default;
82 Derived(Derived&&) noexcept(false) = default;
83 Derived &operator=(const Derived&) noexcept(false) = default;
84 Derived &operator=(Derived&&) noexcept(false) = default;
85 ~Derived() noexcept(false) = default;
87 static_assert(!noexcept(Derived()), "");
88 static_assert(!noexcept(Derived(static_cast<Derived&&>(d1))), "");
89 static_assert(!noexcept(Derived(d1)), "");
90 static_assert(!noexcept(d1 = static_cast<Derived&&>(d1)), "");
121 struct Derived : Base { struct
122 virtual ~Derived();