Home | History | Annotate | Download | only in dcl.fct.def.default

Lines Matching refs:e5

99 struct E5 {
100 E5() = default;
101 E5(const E5&) = default;
102 E5(E5&&) = default;
103 E5 &operator=(const E5&) = default;
104 E5 &operator=(E5&&) = default;
105 ~E5() = default;
109 E5 e5;
110 static_assert(!noexcept(E5()), "");
111 static_assert(!noexcept(E5(static_cast<E5&&>(e5))), "");
112 static_assert(!noexcept(E5(e5)), "");
113 static_assert(!noexcept(e5 = E5()), "");
114 static_assert(!noexcept(e5 = e5), "");